diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 23444fa36..637eac4e4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -104,6 +104,12 @@ itself: `ncm.ts`). When a run changes a file, the workflow opens a pull request whose description, written by `scripts/data-summary.ts`, lists per table how many entries were added and removed, with a sample of each. Never edit these files by hand. +- **Generated from a fetchable mirror of an official source**, the same way, but pinned to a + specific revision of the mirror because the official source itself cannot be fetched by a + script: the CEP range of each municipality (Correios "Busca Faixa de CEP", via a community CSV + mirror of its answers, `municipality-cep-ranges.ts`, writing `src/get-municipality-by-cep/constants.ts`). + Cross-checked against the official Correios "Localidades" list before shipping; see the util's + `@see` tags. - **Maintained by hand**, because the source is a law or a regulation with no machine-readable form: area codes and their states (Anatel, `area-codes.ts`), service phone prefixes (Anatel, `service-phone.ts`), national and state holidays (`holidays.ts`), the órgãos and tribunals of the diff --git a/docs/getting-started.md b/docs/getting-started.md index 3dbe79b89..2c8dc7f09 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -69,7 +69,8 @@ A few utils embed an official dataset and weigh far more than everything else co | Util | Dataset | Minified | Gzipped | | --- | --- | --- | --- | | `getMunicipalities` · `getMunicipalityByCode` · `getMunicipality` | 5571 IBGE municipalities, with names and codes | 154.9 - 156.5 KB | 50.3 - 50.4 KB | -| `getCities` | 5571 IBGE municipality names | 154.2 KB | 49.8 KB | +| `getCities` | 5571 IBGE municipality names | 154.3 KB | 49.9 KB | +| `getMunicipalityByCep` | The IBGE municipality table above, plus 5574 Correios CEP ranges | 393.3 KB | 98.8 KB | | `isValidNcm` | NCM (Nomenclatura Comum do Mercosul) codes | 114.2 KB | 24.6 KB | | `isValidCbo` · `getCbo` | CBO 2002 occupation titles | 119.1 KB | 30.6 KB | | `isValidCnae` · `getCnae` | CNAE-Subclasses 2.3 | 93.9 KB | 21.2 KB | diff --git a/docs/pt-br/getting-started.md b/docs/pt-br/getting-started.md index 86e5f018f..a529f3cf0 100644 --- a/docs/pt-br/getting-started.md +++ b/docs/pt-br/getting-started.md @@ -69,7 +69,8 @@ Alguns utilitários embutem uma base de dados oficial e pesam muito mais que tod | Utilitário | Base de dados | Minificado | Gzip | | --- | --- | --- | --- | | `getMunicipalities` · `getMunicipalityByCode` · `getMunicipality` | 5571 municípios do IBGE, com nomes e códigos | 154,9 - 156,5 KB | 50,3 - 50,4 KB | -| `getCities` | nomes dos 5571 municípios do IBGE | 154,2 KB | 49,8 KB | +| `getCities` | nomes dos 5571 municípios do IBGE | 154,3 KB | 49,9 KB | +| `getMunicipalityByCep` | a tabela de municípios do IBGE acima, mais 5574 faixas de CEP dos Correios | 393,3 KB | 98,8 KB | | `isValidNcm` | códigos NCM (Nomenclatura Comum do Mercosul) | 114,2 KB | 24,6 KB | | `isValidCbo` · `getCbo` | títulos das ocupações da CBO 2002 | 119,1 KB | 30,6 KB | | `isValidCnae` · `getCnae` | CNAE-Subclasses 2.3 | 93,9 KB | 21,2 KB | diff --git a/docs/pt-br/utilities.md b/docs/pt-br/utilities.md index 5736ff28d..7cd2e6fa4 100644 --- a/docs/pt-br/utilities.md +++ b/docs/pt-br/utilities.md @@ -1446,7 +1446,7 @@ convertDateToWords('invalid'); // "" convertDateToWords('29/02/1900'); // "" (1900 não é bissexto) ``` -## Estados e municípios +## Estados e municípios (cidades) ### getStates @@ -1492,6 +1492,33 @@ getStates(); Fonte: [IBGE Localidades](https://servicodados.ibge.gov.br/api/docs/localidades) +### getStateByCep + +Retorna o estado brasileiro ao qual um CEP pertence, a partir das faixas de CEP que os Correios atribuem a cada UF (a "Faixa de CEP" de cada UF). + +- Funciona offline: nenhuma API de CEP é chamada, então a resposta diz qual estado é dono da faixa, não se o CEP está em uso. +- Aceita o que o `isValidCep` aceita: 8 dígitos, como string ou número, ignorando espaços, pontos e hifens. Um CEP que começa com `0` precisa ser uma string, e um número negativo ou fracionário é rejeitado. +- Amazonas, Distrito Federal e Goiás têm duas faixas cada, e nenhuma faixa estadual cobre `00000-000` a `00999-999` nem `78900-000` a `78999-999`. +- A faixa é o bloco que pertence ao estado, não uma garantia de que todo CEP dentro dela está em uso: `10000-000` está sem uso dentro da faixa de São Paulo e ainda assim responde São Paulo. +- Retorna `null` para um CEP inválido ou fora de todas as faixas. Exporta o tipo `State`. + +```javascript +import { getStateByCep } from '@brazilian-utils/brazilian-utils'; + +getStateByCep('01310-100'); +// { code: 'SP', name: 'São Paulo', regionCode: 'SE', regionName: 'Sudeste', ibgeCode: 35 } + +getStateByCep(20040020); +// { code: 'RJ', name: 'Rio de Janeiro', regionCode: 'SE', regionName: 'Sudeste', ibgeCode: 33 } + +getStateByCep('69300-000')?.code; // 'RR' +getStateByCep('72800-000')?.code; // 'GO' +getStateByCep('00999-999'); // null +getStateByCep('12345'); // null +``` + +Fonte: [Correios, Busca Faixa de CEP](https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php) + ### getStateByIbgeCode Retorna o estado brasileiro cujo código IBGE de 2 dígitos (`cUF`, o Código da Unidade da Federação) corresponde ao valor informado. @@ -1569,7 +1596,7 @@ Fonte: [IANA Time Zone Database](https://www.iana.org/time-zones) ### getMunicipalities -Retorna os municípios brasileiros publicados pelo IBGE: todos os municípios, ou só os de um estado quando `stateCode` é informado. +Retorna os municípios (cidades) brasileiros publicados pelo IBGE: todos os municípios, ou só os de um estado quando `stateCode` é informado. - Cada município (`Municipality`) é `{ code, name, stateCode }`, onde `code` é o código IBGE de 7 dígitos. Ordenados por nome no locale "pt-BR". - Só um `stateCode` omitido (ou `undefined`) pede a lista completa: `null` e `''` retornam `[]`. @@ -1608,7 +1635,7 @@ Fonte: [IBGE Localidades](https://servicodados.ibge.gov.br/api/docs/localidades) ### getMunicipalityByCode -Busca um município brasileiro pelo código IBGE de 7 dígitos. +Busca um município (cidade) brasileiro pelo código IBGE de 7 dígitos. - Aceita o código como string ou número inteiro não negativo. - Retorna `{ code, name, stateCode }` (`Municipality`), ou `null` quando o código não tem 7 dígitos ou não corresponde a nenhum município. @@ -1628,6 +1655,30 @@ getMunicipalityByCode('123'); // null (não tem 7 dígitos) Fonte: [IBGE Localidades](https://servicodados.ibge.gov.br/api/docs/localidades) +### getMunicipalityByCep + +Retorna o município (cidade) brasileiro ao qual um CEP pertence, a partir das faixas de CEP que os Correios atribuem a cada município. + +- Funciona offline: nenhuma API de CEP é chamada, então a resposta diz qual município é dono da faixa, não se o CEP está em uso. +- Aceita o que o `isValidCep` aceita: 8 dígitos, como string ou número, ignorando espaços, pontos e hifens. Um CEP que começa com `0` precisa ser uma string, e um número negativo ou fracionário é rejeitado. +- Retorna `{ code, name, stateCode }` (`Municipality`, o mesmo formato que `getMunicipalityByCode` retorna), ou `null` para um CEP inválido ou fora de todas as faixas. +- Alguns municípios foram absorvidos pela faixa de outro, ou não têm faixa própria; um estado que `getStateByCep` resolve ainda pode deixar `getMunicipalityByCep` em `null`. + +```javascript +import { getMunicipalityByCep } from '@brazilian-utils/brazilian-utils'; + +getMunicipalityByCep('01310-100'); +// { code: '3550308', name: 'São Paulo', stateCode: 'SP' } + +getMunicipalityByCep(20040020); +// { code: '3304557', name: 'Rio de Janeiro', stateCode: 'RJ' } + +getMunicipalityByCep('00999-999'); // null +getMunicipalityByCep('12345'); // null +``` + +Fonte: [Correios, Busca Faixa de CEP](https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php) + ### getCities Retorna os nomes das cidades brasileiras: todas as cidades, ou só as de um estado. **Descontinuada:** use `getMunicipalities` no lugar. diff --git a/docs/utilities.md b/docs/utilities.md index dc8b8b3e9..6a14dc3f1 100644 --- a/docs/utilities.md +++ b/docs/utilities.md @@ -1446,7 +1446,7 @@ convertDateToWords('invalid'); // "" convertDateToWords('29/02/1900'); // "" (1900 is not a leap year) ``` -## States and municipalities +## States and municipalities (cities) ### getStates @@ -1492,6 +1492,33 @@ getStates(); Source: [IBGE Localidades](https://servicodados.ibge.gov.br/api/docs/localidades) +### getStateByCep + +Get the Brazilian state a CEP belongs to, from the CEP ranges the Correios assign to each state (the "Faixa de CEP" of each UF). + +- It runs offline: no CEP API is called, so the answer says which state owns the range, not whether the CEP is in use. +- Accepts what `isValidCep` accepts: 8 digits, as a string or a number, with spaces, dots and hyphens ignored. A CEP that starts with `0` has to be a string, and a negative or fractional number is rejected. +- Amazonas, Distrito Federal and Goiás have two ranges each, and no state range covers `00000-000` to `00999-999` nor `78900-000` to `78999-999`. +- A range is the block the state owns, not a promise that every CEP in it is in use: `10000-000` sits unused inside the São Paulo range and still answers São Paulo. +- Returns `null` for an invalid CEP or one outside every range. Exports the `State` type. + +```javascript +import { getStateByCep } from '@brazilian-utils/brazilian-utils'; + +getStateByCep('01310-100'); +// { code: 'SP', name: 'São Paulo', regionCode: 'SE', regionName: 'Sudeste', ibgeCode: 35 } + +getStateByCep(20040020); +// { code: 'RJ', name: 'Rio de Janeiro', regionCode: 'SE', regionName: 'Sudeste', ibgeCode: 33 } + +getStateByCep('69300-000')?.code; // 'RR' +getStateByCep('72800-000')?.code; // 'GO' +getStateByCep('00999-999'); // null +getStateByCep('12345'); // null +``` + +Source: [Correios, Busca Faixa de CEP](https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php) + ### getStateByIbgeCode Get the Brazilian state whose 2-digit IBGE code (`cUF`, the Código da Unidade da Federação) matches the given value. @@ -1569,7 +1596,7 @@ Source: [IANA Time Zone Database](https://www.iana.org/time-zones) ### getMunicipalities -Get the Brazilian municipalities published by the IBGE: every municipality, or only those of one state when `stateCode` is given. +Get the Brazilian municipalities (cities) published by the IBGE: every municipality, or only those of one state when `stateCode` is given. - Each municipality (`Municipality`) is `{ code, name, stateCode }`, where `code` is the 7-digit IBGE code. Sorted by name in the "pt-BR" locale. - Only an omitted (or `undefined`) `stateCode` asks for the full list: `null` and `''` return `[]`. @@ -1608,7 +1635,7 @@ Source: [IBGE Localidades](https://servicodados.ibge.gov.br/api/docs/localidades ### getMunicipalityByCode -Look up a Brazilian municipality by its 7-digit IBGE code. +Look up a Brazilian municipality (city) by its 7-digit IBGE code. - Accepts the code as a string or a non-negative integer. - Returns `{ code, name, stateCode }` (`Municipality`), or `null` when the code is not 7 digits long or matches no municipality. @@ -1628,6 +1655,30 @@ getMunicipalityByCode('123'); // null (not 7 digits) Source: [IBGE Localidades](https://servicodados.ibge.gov.br/api/docs/localidades) +### getMunicipalityByCep + +Get the Brazilian municipality (city) a CEP belongs to, from the CEP ranges the Correios assign to each municipality. + +- It runs offline: no CEP API is called, so the answer says which municipality owns the range, not whether the CEP is in use. +- Accepts what `isValidCep` accepts: 8 digits, as a string or a number, with spaces, dots and hyphens ignored. A CEP that starts with `0` has to be a string, and a negative or fractional number is rejected. +- Returns `{ code, name, stateCode }` (`Municipality`, the same shape `getMunicipalityByCode` returns), or `null` for an invalid CEP or one outside every range. +- Some municipalities were absorbed into another one's range, or have no dedicated range at all; a state `getStateByCep` resolves can still leave `getMunicipalityByCep` at `null`. + +```javascript +import { getMunicipalityByCep } from '@brazilian-utils/brazilian-utils'; + +getMunicipalityByCep('01310-100'); +// { code: '3550308', name: 'São Paulo', stateCode: 'SP' } + +getMunicipalityByCep(20040020); +// { code: '3304557', name: 'Rio de Janeiro', stateCode: 'RJ' } + +getMunicipalityByCep('00999-999'); // null +getMunicipalityByCep('12345'); // null +``` + +Source: [Correios, Busca Faixa de CEP](https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php) + ### getCities Get the names of Brazilian cities: every city, or only those of one state. **Deprecated:** use `getMunicipalities` instead. diff --git a/jsr.json b/jsr.json index e8ceb850d..f6f8bfeef 100644 --- a/jsr.json +++ b/jsr.json @@ -72,10 +72,12 @@ "./get-legal-natures-by-category": "./src/get-legal-natures-by-category/get-legal-natures-by-category.ts", "./get-municipalities": "./src/get-municipalities/get-municipalities.ts", "./get-municipality": "./src/get-municipality/get-municipality.ts", + "./get-municipality-by-cep": "./src/get-municipality-by-cep/get-municipality-by-cep.ts", "./get-municipality-by-code": "./src/get-municipality-by-code/get-municipality-by-code.ts", "./get-nfe-key-info": "./src/get-nfe-key-info/get-nfe-key-info.ts", "./get-pix-key-info": "./src/get-pix-key-info/get-pix-key-info.ts", "./get-pix-payload-info": "./src/get-pix-payload-info/get-pix-payload-info.ts", + "./get-state-by-cep": "./src/get-state-by-cep/get-state-by-cep.ts", "./get-state-by-ibge-code": "./src/get-state-by-ibge-code/get-state-by-ibge-code.ts", "./get-state-code-by-name": "./src/get-state-code-by-name/get-state-code-by-name.ts", "./get-state-name-by-code": "./src/get-state-name-by-code/get-state-name-by-code.ts", diff --git a/reports/api/brazilian-utils.api.md b/reports/api/brazilian-utils.api.md index 8539554b2..f6a03ccbd 100644 --- a/reports/api/brazilian-utils.api.md +++ b/reports/api/brazilian-utils.api.md @@ -576,6 +576,9 @@ export function getMunicipality(options: GetMunicipalityByNameParams): Promise; +// @public +export const getMunicipalityByCep: (value: string | number) => Municipality | null; + // @public export const getMunicipalityByCode: (code: string | number) => Municipality | null; @@ -611,6 +614,9 @@ export const getPixKeyInfo: (value: string) => PixKeyInfo | null; // @public export const getPixPayloadInfo: (value: string) => PixPayloadInfo | null; +// @public +export const getStateByCep: (value: string | number) => State | null; + // @public export const getStateByIbgeCode: (code: string | number) => State | null; diff --git a/scripts/cities.ts b/scripts/cities.ts index 12d6ec716..c3c59fb4d 100644 --- a/scripts/cities.ts +++ b/scripts/cities.ts @@ -56,6 +56,42 @@ const isCity = (value: unknown): value is City => "microrregiao" in value && "regiao-imediata" in value; +/** + * Alternative spellings kept for a handful of municipalities whose name changed at the IBGE + * more recently than a third party dataset this library cross-checks against, keyed by the + * 7-digit IBGE code. Curated by hand from the mismatches found joining + * https://gist.githubusercontent.com/hugosenari/ec1a7d88f5bdd01844424dbc9aff9590/raw/9aeb90ef777131ffaf1a6f5381d1f163c9c79b09/ceps.csv + * against the IBGE municipalities below (see `scripts/municipality-cep-ranges.ts`); `main` + * below fails the build if a code here stops matching a real municipality, so a future IBGE + * refresh can never leave a stale entry silently in place. + */ +const OTHER_NAMES: Record = { + "1400605": ["São Luiz"], + "1502954": ["Eldorado dos Carajás"], + "1708254": ["Fortaleza do Tabocão"], + "2108504": ["Pindaré Mirim"], + "2400208": ["Açu"], + "2401206": ["Ares"], + "2401305": ["Augusto Severo"], + "2405306": ["Boa Saúde"], + "2408409": ["Olho-D'Água do Borges"], + "2606903": ["Iguaraci"], + "2608503": ["Lagoa do Itaenga"], + "2800100": ["Amparo de São Francisco"], + "2922250": ["Muquém de São Francisco"], + "2928505": ["Santa Teresinha"], + "3105509": ["Barão de Monte Alto"], + "3122900": ["Dona Eusébia"], + "3145455": ["Olhos D'Água"], + "3165206": ["São Thomé das Letras"], + "3165560": ["Sem Peixe"], + "3506607": ["Biritiba-Mirim"], + "3516101": ["Florínia"], + "3550001": ["São Luis do Paraitinga"], + "4206108": ["Grão Pará"], + "5107800": ["Santo Antônio do Leverger"], +}; + const main = async (): Promise => { const response = await fetchWithRetry( "https://servicodados.ibge.gov.br/api/v1/localidades/municipios", @@ -104,9 +140,24 @@ const main = async (): Promise => { throw new Error(`IBGE response is missing municipalities for: ${missingStates.join(", ")}`); } + const knownCodes = new Set(json.map((city) => String(city.id))); + const staleOtherNames = Object.keys(OTHER_NAMES).filter((code) => !knownCodes.has(code)); + + if (staleOtherNames.length > 0) { + throw new Error(`OTHER_NAMES has codes IBGE no longer lists: ${staleOtherNames.join(", ")}`); + } + + const otherNamesBody = Object.entries(OTHER_NAMES) + .sort(([a], [b]) => a.localeCompare(b)) + .map( + ([code, names]) => + `\t${JSON.stringify(code)}: [${names.map((name) => JSON.stringify(name)).join(", ")}],`, + ) + .join("\n"); + await writeFile( - resolve(scriptsDir, "..", "./src/_internals/constants/cities.ts"), - `import type { StateCode } from "./states"; + resolve(scriptsDir, "..", "./src/_internals/constants/municipalities.ts"), + `import { type StateCode } from "./states"; /** * Brazilian municipalities by state, published by the IBGE. \`DATA\` holds, for each state, a @@ -127,6 +178,18 @@ export type Municipality = { export const DATA: Record = { ${body} }; + +/** + * Alternative spellings of a municipality name, keyed by its 7-digit IBGE code, for the + * municipalities a source outside the IBGE still spells differently, usually because of a + * recent official rename. A municipality with no variant is simply absent, at no extra cost. + * Curated by \`scripts/cities.ts\`. + * + * @see Official: https://servicodados.ibge.gov.br/api/docs/localidades + */ +export const OTHER_NAMES: Readonly> = { +${otherNamesBody} +}; `, ); }; diff --git a/scripts/data-summary.ts b/scripts/data-summary.ts index 3dd872471..ee8c48adf 100644 --- a/scripts/data-summary.ts +++ b/scripts/data-summary.ts @@ -19,9 +19,11 @@ const DATASETS: Record = { "src/_internals/constants/banks.ts": "Banks (Banco Central, STR participants)", "src/_internals/constants/cbo.ts": "CBO 2002 occupations (Ministério do Trabalho e Emprego)", "src/_internals/constants/cfop.ts": "CFOP codes (CONFAZ, Convênio SINIEF s/nº 1970)", - "src/_internals/constants/cities.ts": "Municipalities (IBGE)", "src/_internals/constants/cnae.ts": "CNAE subclasses (IBGE/CONCLA)", + "src/_internals/constants/municipalities.ts": "Municipalities (IBGE)", "src/_internals/constants/states.ts": "States (IBGE)", + "src/get-municipality-by-cep/constants.ts": + "Municipality CEP ranges (Correios, via a community mirror)", "src/is-valid-legal-nature/constants.ts": "Legal natures (IBGE/CONCLA)", "src/is-valid-ncm/constants.ts": "NCM codes (Siscomex)", }; diff --git a/scripts/data.ts b/scripts/data.ts index 850c569d0..266eedbab 100644 --- a/scripts/data.ts +++ b/scripts/data.ts @@ -34,8 +34,8 @@ const generatedFiles = [ "./src/_internals/constants/banks.ts", "./src/_internals/constants/cbo.ts", "./src/_internals/constants/cfop.ts", - "./src/_internals/constants/cities.ts", "./src/_internals/constants/cnae.ts", + "./src/_internals/constants/municipalities.ts", "./src/_internals/constants/states.ts", "./src/is-valid-legal-nature/constants.ts", "./src/is-valid-ncm/constants.ts", diff --git a/scripts/municipality-cep-ranges.ts b/scripts/municipality-cep-ranges.ts new file mode 100644 index 000000000..4e71192c2 --- /dev/null +++ b/scripts/municipality-cep-ranges.ts @@ -0,0 +1,239 @@ +#!/usr/bin/env node + +import { writeFile } from "node:fs/promises"; +import { register } from "node:module"; +import { resolve } from "node:path"; + +import { fetchWithRetry } from "../src/_internals/fetch-with-retry/fetch-with-retry.ts"; +import { removeAccents } from "../src/remove-accents/remove-accents.ts"; + +const scriptsDir = import.meta.dirname; + +// Every `src/` module imports its siblings without a file extension, the convention the +// bundler resolves; a plain `node` process (this script) cannot resolve those on its own. This +// hook retries a failed relative resolution with `.ts` appended, so `municipalities.ts` (in +// particular its own `import { type StateCode } from "./states"`) can be imported below exactly +// as every other consumer imports it, with no copy of its data and no change to its style. +const EXTENSIONLESS_IMPORT_LOADER = ` +export async function resolve(specifier, context, nextResolve) { + try { + return await nextResolve(specifier, context); + } catch (error) { + if (specifier.startsWith(".") && !specifier.endsWith(".ts")) { + return nextResolve(\`\${specifier}.ts\`, context); + } + + throw error; + } +} +`; + +register( + `data:text/javascript,${encodeURIComponent(EXTENSIONLESS_IMPORT_LOADER)}`, + import.meta.url, +); + +const { DATA, OTHER_NAMES } = await import("../src/_internals/constants/municipalities.ts"); + +type StateCode = keyof typeof DATA; + +const WHITESPACE_RUN_REGEX = /\s+/g; + +// Same composition as `normalizeMunicipalityName`, reimplemented from the `removeAccents` +// primitive it is itself built from: that helper's own import of `removeAccents` omits the +// file extension (the convention every `src/` module follows, resolved by the bundler), which +// a plain `node` process run from `scripts/` cannot resolve, unlike every other `scripts/` +// import, which always carries its extension. +const normalizeMunicipalityName = (value: string): string => + removeAccents(value).replaceAll(WHITESPACE_RUN_REGEX, " ").trim().toUpperCase(); + +// Pinned to a specific commit of the gist, so a re-run always reads the exact CSV this table +// was cross-checked against; bumping it is a deliberate, reviewed change. +const SOURCE_URL = + "https://gist.githubusercontent.com/hugosenari/ec1a7d88f5bdd01844424dbc9aff9590/raw/9aeb90ef777131ffaf1a6f5381d1f163c9c79b09/ceps.csv"; + +const EXPECTED_HEADER = "UF,CIDADE,CEP DE,CEP ATÉ"; +const EXPECTED_MUNICIPALITY_ROWS = 5764; + +type Row = { + uf: string; + cidade: string; + cepDe: string; + cepAte: string; +}; + +const parseCsv = (text: string): Row[] => { + const lines = text.split(/\r?\n/).filter((line) => line.length > 0); + + if (lines[0] !== EXPECTED_HEADER) { + throw new Error(`Unexpected ceps.csv header: ${lines[0]}`); + } + + return lines.slice(1).map((line) => { + const [uf, cidade, cepDe, cepAte] = line.split(","); + + return { uf: uf ?? "", cidade: cidade ?? "", cepDe: cepDe ?? "", cepAte: cepAte ?? "" }; + }); +}; + +const isStateCode = (value: string): value is StateCode => Object.hasOwn(DATA, value); + +/** + * Builds, for one state, a map from every normalized name that identifies one of its + * municipalities (its IBGE name and every `OTHER_NAMES` variant) to that municipality's code. + * + * @param {StateCode} stateCode - The state whose municipalities to index. + * @returns {Map} A map from normalized name to 7-digit IBGE code. + */ +const buildNameIndex = (stateCode: StateCode): Map => { + const index = new Map(); + + for (const [name, code] of DATA[stateCode]) { + index.set(normalizeMunicipalityName(name), code); + + for (const otherName of OTHER_NAMES[code] ?? []) { + index.set(normalizeMunicipalityName(otherName), code); + } + } + + return index; +}; + +type CepRange = { + code: string; + start: number; + end: number; +}; + +/** + * Merges the ranges of one municipality that overlap or touch into as few ranges as possible, + * keeping genuinely separate blocks (such as the two the gist lists for Brasília) apart. The + * source CSV lists a few municipalities twice under overlapping ranges, once per historical + * name sharing the same modern range; merging removes that duplication rather than shipping it. + * + * @param {CepRange[]} ranges - The ranges of one municipality, in any order. + * @returns {CepRange[]} The same ranges, merged and sorted by `start`. + */ +const mergeRanges = (ranges: CepRange[]): CepRange[] => { + const sorted = [...ranges].sort((a, b) => a.start - b.start); + const merged: CepRange[] = []; + + for (const range of sorted) { + const last = merged.at(-1); + + if (last !== undefined && range.start <= last.end + 1) { + last.end = Math.max(last.end, range.end); + } else { + merged.push({ ...range }); + } + } + + return merged; +}; + +const withNumericSeparators = (value: number): string => + value.toLocaleString("en-US").replaceAll(",", "_"); + +const main = async (): Promise => { + const response = await fetchWithRetry(SOURCE_URL); + + if (!response.ok) { + throw new Error(`ceps.csv request failed with status ${response.status}`); + } + + const rows = parseCsv(await response.text()); + const municipalityRows = rows.filter((row) => row.cidade !== ""); + + if (municipalityRows.length !== EXPECTED_MUNICIPALITY_ROWS) { + throw new Error( + `Expected ${EXPECTED_MUNICIPALITY_ROWS} municipality rows in ceps.csv, found ${municipalityRows.length}`, + ); + } + + const nameIndexByState = new Map>(); + const byCode = new Map(); + const unresolved: string[] = []; + + for (const row of municipalityRows) { + if (!isStateCode(row.uf)) { + unresolved.push(`${row.uf},${row.cidade}`); + continue; + } + + if (!nameIndexByState.has(row.uf)) { + nameIndexByState.set(row.uf, buildNameIndex(row.uf)); + } + + const code = nameIndexByState.get(row.uf)?.get(normalizeMunicipalityName(row.cidade)); + + if (code === undefined) { + unresolved.push(`${row.uf},${row.cidade}`); + continue; + } + + const ranges = byCode.get(code) ?? []; + + ranges.push({ code, start: Number(row.cepDe), end: Number(row.cepAte) }); + byCode.set(code, ranges); + } + + if (unresolved.length > 0) { + throw new Error( + `ceps.csv rows that match no municipality (add an OTHER_NAMES entry in scripts/cities.ts): ${unresolved.join(" | ")}`, + ); + } + + const allRanges = [...byCode.values()].flatMap((ranges) => mergeRanges(ranges)); + + allRanges.sort((a, b) => a.start - b.start); + + for (const [index, range] of allRanges.entries()) { + const previous = allRanges[index - 1]; + + if (previous !== undefined && range.start <= previous.end) { + throw new Error( + `Overlapping CEP ranges: ${previous.code} (${previous.start}-${previous.end}) and ${range.code} (${range.start}-${range.end})`, + ); + } + } + + const body = allRanges + .map( + (range) => + `\t{ code: "${range.code}", start: ${withNumericSeparators(range.start)}, end: ${withNumericSeparators(range.end)} },`, + ) + .join("\n"); + + await writeFile( + resolve(scriptsDir, "..", "./src/get-municipality-by-cep/constants.ts"), + `/** One range of CEPs assigned by the Correios to a municipality. */ +type MunicipalityCepRange = { + /** 7-digit IBGE code of the municipality that owns the range. */ + readonly code: string; + /** First CEP of the range, as a number. */ + readonly start: number; + /** Last CEP of the range, as a number. */ + readonly end: number; +}; + +/** + * CEP ranges of each municipality ("Faixa de CEP" per município), in ascending order. Only the + * range and the 7-digit IBGE code are stored here; the municipality name and state come from + * \`src/_internals/constants/municipalities.ts\` through \`getMunicipalityByCode\`, so a name is + * never duplicated between the two tables. Generated by \`scripts/municipality-cep-ranges.ts\`. + * + * @see Official: https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php + * @see Based on: https://gist.github.com/hugosenari/ec1a7d88f5bdd01844424dbc9aff9590 + * Copy of the answers of the Correios search, one row per municipality. + */ +export const CEP_RANGES: readonly MunicipalityCepRange[] = [ +${body} +]; +`, + ); +}; + +await main().catch((error) => { + console.error(error instanceof Error ? error.message : error); + process.exit(1); +}); diff --git a/src/_internals/constants/cities.ts b/src/_internals/constants/municipalities.ts similarity index 99% rename from src/_internals/constants/cities.ts rename to src/_internals/constants/municipalities.ts index 2c81c6b22..f9bc1fbb7 100644 --- a/src/_internals/constants/cities.ts +++ b/src/_internals/constants/municipalities.ts @@ -5641,3 +5641,38 @@ export const DATA: Record = { ["Xambioá", "1722107"], ], }; + +/** + * Alternative spellings of a municipality name, keyed by its 7-digit IBGE code, for the + * municipalities a source outside the IBGE still spells differently, usually because of a + * recent official rename. A municipality with no variant is simply absent, at no extra cost. + * Curated by `scripts/cities.ts`. + * + * @see Official: https://servicodados.ibge.gov.br/api/docs/localidades + */ +export const OTHER_NAMES: Readonly> = { + "1400605": ["São Luiz"], + "1502954": ["Eldorado dos Carajás"], + "1708254": ["Fortaleza do Tabocão"], + "2108504": ["Pindaré Mirim"], + "2400208": ["Açu"], + "2401206": ["Ares"], + "2401305": ["Augusto Severo"], + "2405306": ["Boa Saúde"], + "2408409": ["Olho-D'Água do Borges"], + "2606903": ["Iguaraci"], + "2608503": ["Lagoa do Itaenga"], + "2800100": ["Amparo de São Francisco"], + "2922250": ["Muquém de São Francisco"], + "2928505": ["Santa Teresinha"], + "3105509": ["Barão de Monte Alto"], + "3122900": ["Dona Eusébia"], + "3145455": ["Olhos D'Água"], + "3165206": ["São Thomé das Letras"], + "3165560": ["Sem Peixe"], + "3506607": ["Biritiba-Mirim"], + "3516101": ["Florínia"], + "3550001": ["São Luis do Paraitinga"], + "4206108": ["Grão Pará"], + "5107800": ["Santo Antônio do Leverger"], +}; diff --git a/src/_internals/find-cep-range/find-cep-range.test.ts b/src/_internals/find-cep-range/find-cep-range.test.ts new file mode 100644 index 000000000..94a2e544e --- /dev/null +++ b/src/_internals/find-cep-range/find-cep-range.test.ts @@ -0,0 +1,53 @@ +import { describe, expect, test } from "../test/runtime"; +import { findCepRange } from "./find-cep-range"; + +const RANGES = [ + { start: 1_000_000, end: 19_999_999, label: "SP" }, + { start: 20_000_000, end: 28_999_999, label: "RJ" }, +]; + +describe("findCepRange", () => { + test("should return the range that contains a formatted CEP", () => { + expect(findCepRange("01310-100", RANGES)).toEqual(RANGES[0]); + }); + + test("should return the range that contains a CEP given as a number", () => { + expect(findCepRange(20_040_020, RANGES)).toEqual(RANGES[1]); + }); + + test("should return the range that owns the first and the last CEP of a range", () => { + expect(findCepRange("01000-000", RANGES)).toEqual(RANGES[0]); + expect(findCepRange("19999-999", RANGES)).toEqual(RANGES[0]); + }); + + test("should return null for a CEP outside every range", () => { + expect(findCepRange("29000-000", RANGES)).toBeNull(); + }); + + test("should return null for an empty table", () => { + expect(findCepRange("01310-100", [])).toBeNull(); + }); + + test("should return null for an invalid CEP", () => { + expect(findCepRange("12345", RANGES)).toBeNull(); + expect(findCepRange("abc01310100", RANGES)).toBeNull(); + expect(findCepRange(-20_040_020, RANGES)).toBeNull(); + expect(findCepRange(2_004_002.5, RANGES)).toBeNull(); + }); + + test("should return null for a value that is not a string or a number", () => { + // @ts-expect-error: intentionally invalid input + expect(findCepRange(null, RANGES)).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(findCepRange(undefined, RANGES)).toBeNull(); + }); + + test("should return the first match when ranges overlap", () => { + const overlapping = [ + { start: 1_000_000, end: 2_000_000, label: "first" }, + { start: 1_500_000, end: 2_500_000, label: "second" }, + ]; + + expect(findCepRange("01500-000", overlapping)).toEqual(overlapping[0]); + }); +}); diff --git a/src/_internals/find-cep-range/find-cep-range.ts b/src/_internals/find-cep-range/find-cep-range.ts new file mode 100644 index 000000000..3b26df9cc --- /dev/null +++ b/src/_internals/find-cep-range/find-cep-range.ts @@ -0,0 +1,42 @@ +import { isValidCep } from "../../is-valid-cep/is-valid-cep"; +import { parseCep } from "../../parse-cep/parse-cep"; +import { isLookupCode } from "../is-lookup-code/is-lookup-code"; + +/** One entry of a table `findCepRange` searches: any range with a first and a last CEP. */ +type CepRange = { + /** First CEP of the range, as a number. */ + readonly start: number; + /** Last CEP of the range, as a number. */ + readonly end: number; +}; + +/** + * Validates `value` as `isValidCep` does and finds the entry of `ranges` whose `start`/`end` + * bounds contain it, shared by every CEP range lookup (`getStateByCep`, `getMunicipalityByCep`) + * so the validation and the parsing happen only once. + * + * `ranges` is searched in order and the first match wins, so a caller whose ranges may overlap + * controls the answer through their order; every range table this package ships is disjoint, + * so the order never matters in practice. + * + * @param {string|number} value - The CEP, with or without formatting. + * @param {readonly CepRange[]} ranges - The table to search, each entry at least a `CepRange`. + * @returns {T|null} The matching entry, or `null` when `value` is not a valid CEP or falls + * outside every range. + * + * @example + * ```typescript + * findCepRange("01310-100", [{ start: 1_000_000, end: 19_999_999 }]); // { start: 1_000_000, end: 19_999_999 } + * findCepRange("00999-999", [{ start: 1_000_000, end: 19_999_999 }]); // null + * ``` + */ +export const findCepRange = ( + value: string | number, + ranges: readonly T[], +): T | null => { + if (!isLookupCode(value) || !isValidCep(value)) return null; + + const cep = Number(parseCep(value)); + + return ranges.find((entry) => cep >= entry.start && cep <= entry.end) ?? null; +}; diff --git a/src/get-cities/get-cities.test.ts b/src/get-cities/get-cities.test.ts index 1b3aa49d5..b2f238557 100644 --- a/src/get-cities/get-cities.test.ts +++ b/src/get-cities/get-cities.test.ts @@ -1,6 +1,6 @@ import * as fc from "fast-check"; -import { DATA } from "../_internals/constants/cities"; +import { DATA } from "../_internals/constants/municipalities"; import { type StateCode } from "../_internals/constants/states"; import { anyGarbage, stateCodes } from "../_internals/test/arbitraries"; import { expectNeverThrows } from "../_internals/test/properties"; diff --git a/src/get-cities/get-cities.ts b/src/get-cities/get-cities.ts index eb71c02a7..aec8398d2 100644 --- a/src/get-cities/get-cities.ts +++ b/src/get-cities/get-cities.ts @@ -1,4 +1,4 @@ -import { DATA as CITIES_DATA } from "../_internals/constants/cities"; +import { DATA as CITIES_DATA } from "../_internals/constants/municipalities"; import { type StateCode } from "../_internals/constants/states"; export type { StateCode } from "../_internals/constants/states"; diff --git a/src/get-municipalities/get-municipalities.test.ts b/src/get-municipalities/get-municipalities.test.ts index 3601c4521..37a778a66 100644 --- a/src/get-municipalities/get-municipalities.test.ts +++ b/src/get-municipalities/get-municipalities.test.ts @@ -1,6 +1,6 @@ import * as fc from "fast-check"; -import { DATA, type Municipality } from "../_internals/constants/cities"; +import { DATA, type Municipality } from "../_internals/constants/municipalities"; import { type StateCode } from "../_internals/constants/states"; import { describe, expect, expectTypeOf, it, test } from "../_internals/test/runtime"; import { getCities } from "../get-cities/get-cities"; diff --git a/src/get-municipalities/get-municipalities.ts b/src/get-municipalities/get-municipalities.ts index f77f25a94..27a6a76bd 100644 --- a/src/get-municipalities/get-municipalities.ts +++ b/src/get-municipalities/get-municipalities.ts @@ -1,7 +1,7 @@ -import { DATA as CITIES_DATA, type Municipality } from "../_internals/constants/cities"; +import { DATA as CITIES_DATA, type Municipality } from "../_internals/constants/municipalities"; import { DATA, type StateCode } from "../_internals/constants/states"; -export type { Municipality } from "../_internals/constants/cities"; +export type { Municipality } from "../_internals/constants/municipalities"; export type { StateCode } from "../_internals/constants/states"; const buildMunicipalities = (stateCode: StateCode): Municipality[] => diff --git a/src/get-municipality-by-cep/constants.ts b/src/get-municipality-by-cep/constants.ts new file mode 100644 index 000000000..526e15e27 --- /dev/null +++ b/src/get-municipality-by-cep/constants.ts @@ -0,0 +1,5595 @@ +/** One range of CEPs assigned by the Correios to a municipality. */ +type MunicipalityCepRange = { + /** 7-digit IBGE code of the municipality that owns the range. */ + readonly code: string; + /** First CEP of the range, as a number. */ + readonly start: number; + /** Last CEP of the range, as a number. */ + readonly end: number; +}; + +/** + * CEP ranges of each municipality ("Faixa de CEP" per município), in ascending order. Only the + * range and the 7-digit IBGE code are stored here; the municipality name and state come from + * `src/_internals/constants/municipalities.ts` through `getMunicipalityByCode`, so a name is + * never duplicated between the two tables. Generated by `scripts/municipality-cep-ranges.ts`. + * + * @see Official: https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php + * @see Based on: https://gist.github.com/hugosenari/ec1a7d88f5bdd01844424dbc9aff9590 + * Copy of the answers of the Correios search, one row per municipality. + */ +export const CEP_RANGES: readonly MunicipalityCepRange[] = [ + { code: "3550308", start: 1_000_001, end: 5_999_999 }, + { code: "3534401", start: 6_000_001, end: 6_299_999 }, + { code: "3510609", start: 6_300_001, end: 6_399_999 }, + { code: "3505708", start: 6_400_001, end: 6_499_999 }, + { code: "3547304", start: 6_500_001, end: 6_549_999 }, + { code: "3539103", start: 6_550_000, end: 6_599_999 }, + { code: "3525003", start: 6_600_001, end: 6_649_999 }, + { code: "3522505", start: 6_650_001, end: 6_699_999 }, + { code: "3513009", start: 6_700_001, end: 6_729_999 }, + { code: "3556453", start: 6_730_000, end: 6_749_999 }, + { code: "3552809", start: 6_750_001, end: 6_799_999 }, + { code: "3515004", start: 6_800_001, end: 6_849_999 }, + { code: "3522208", start: 6_850_001, end: 6_889_999 }, + { code: "3549953", start: 6_890_000, end: 6_899_999 }, + { code: "3515103", start: 6_900_000, end: 6_949_999 }, + { code: "3526209", start: 6_950_000, end: 6_999_999 }, + { code: "3518800", start: 7_000_001, end: 7_399_999 }, + { code: "3503901", start: 7_400_001, end: 7_499_999 }, + { code: "3546801", start: 7_500_000, end: 7_599_999 }, + { code: "3528502", start: 7_600_000, end: 7_699_999 }, + { code: "3509007", start: 7_700_001, end: 7_749_999 }, + { code: "3509205", start: 7_750_001, end: 7_799_999 }, + { code: "3516408", start: 7_800_001, end: 7_899_999 }, + { code: "3516309", start: 7_900_001, end: 7_999_999 }, + { code: "3550308", start: 8_000_000, end: 8_499_999 }, + { code: "3515707", start: 8_500_001, end: 8_549_999 }, + { code: "3539806", start: 8_550_001, end: 8_569_999 }, + { code: "3523107", start: 8_570_001, end: 8_599_999 }, + { code: "3552502", start: 8_600_001, end: 8_699_999 }, + { code: "3530607", start: 8_700_001, end: 8_899_999 }, + { code: "3518305", start: 8_900_000, end: 8_939_999 }, + { code: "3506607", start: 8_940_000, end: 8_969_999 }, + { code: "3545001", start: 8_970_000, end: 8_999_999 }, + { code: "3547809", start: 9_000_001, end: 9_299_999 }, + { code: "3529401", start: 9_300_001, end: 9_399_999 }, + { code: "3543303", start: 9_400_001, end: 9_449_999 }, + { code: "3544103", start: 9_450_000, end: 9_499_999 }, + { code: "3548807", start: 9_500_001, end: 9_599_999 }, + { code: "3548708", start: 9_600_001, end: 9_899_999 }, + { code: "3513801", start: 9_900_001, end: 9_999_999 }, + { code: "3548500", start: 11_000_001, end: 11_249_999 }, + { code: "3506359", start: 11_250_000, end: 11_299_999 }, + { code: "3551009", start: 11_300_001, end: 11_399_999 }, + { code: "3518701", start: 11_400_001, end: 11_499_999 }, + { code: "3513504", start: 11_500_001, end: 11_599_999 }, + { code: "3550704", start: 11_600_001, end: 11_629_999 }, + { code: "3520400", start: 11_630_000, end: 11_659_999 }, + { code: "3510500", start: 11_660_001, end: 11_679_999 }, + { code: "3555406", start: 11_680_000, end: 11_699_999 }, + { code: "3541000", start: 11_700_001, end: 11_729_999 }, + { code: "3531100", start: 11_730_000, end: 11_739_999 }, + { code: "3522109", start: 11_740_000, end: 11_749_999 }, + { code: "3537602", start: 11_750_000, end: 11_759_999 }, + { code: "3523305", start: 11_760_000, end: 11_789_999 }, + { code: "3537206", start: 11_790_000, end: 11_799_999 }, + { code: "3526100", start: 11_800_000, end: 11_849_999 }, + { code: "3529906", start: 11_850_000, end: 11_899_999 }, + { code: "3542602", start: 11_900_000, end: 11_909_999 }, + { code: "3551801", start: 11_910_000, end: 11_919_999 }, + { code: "3520301", start: 11_920_000, end: 11_924_999 }, + { code: "3520426", start: 11_925_000, end: 11_929_999 }, + { code: "3536208", start: 11_930_000, end: 11_939_999 }, + { code: "3524600", start: 11_940_000, end: 11_949_999 }, + { code: "3509254", start: 11_950_000, end: 11_954_999 }, + { code: "3505401", start: 11_955_000, end: 11_959_999 }, + { code: "3514809", start: 11_960_000, end: 11_989_999 }, + { code: "3509908", start: 11_990_000, end: 11_999_999 }, + { code: "3554102", start: 12_000_001, end: 12_119_999 }, + { code: "3554805", start: 12_120_000, end: 12_129_999 }, + { code: "3526308", start: 12_130_000, end: 12_139_999 }, + { code: "3550001", start: 12_140_000, end: 12_169_999 }, + { code: "3542305", start: 12_170_000, end: 12_179_999 }, + { code: "3532306", start: 12_180_000, end: 12_199_999 }, + { code: "3549904", start: 12_200_001, end: 12_249_999 }, + { code: "3531704", start: 12_250_000, end: 12_259_999 }, + { code: "3535606", start: 12_260_000, end: 12_269_999 }, + { code: "3524907", start: 12_270_000, end: 12_279_999 }, + { code: "3508504", start: 12_280_001, end: 12_299_999 }, + { code: "3524402", start: 12_300_001, end: 12_349_999 }, + { code: "3520202", start: 12_350_000, end: 12_379_999 }, + { code: "3546009", start: 12_380_000, end: 12_399_999 }, + { code: "3538006", start: 12_400_001, end: 12_449_999 }, + { code: "3548203", start: 12_450_000, end: 12_459_999 }, + { code: "3509700", start: 12_460_000, end: 12_489_999 }, + { code: "3548609", start: 12_490_000, end: 12_499_999 }, + { code: "3518404", start: 12_500_001, end: 12_524_999 }, + { code: "3540754", start: 12_525_000, end: 12_529_999 }, + { code: "3513603", start: 12_530_000, end: 12_569_999 }, + { code: "3502507", start: 12_570_000, end: 12_579_999 }, + { code: "3544301", start: 12_580_000, end: 12_599_999 }, + { code: "3527207", start: 12_600_001, end: 12_614_999 }, + { code: "3509957", start: 12_615_000, end: 12_619_999 }, + { code: "3538501", start: 12_620_000, end: 12_629_999 }, + { code: "3508603", start: 12_630_000, end: 12_689_999 }, + { code: "3552007", start: 12_690_000, end: 12_699_999 }, + { code: "3513405", start: 12_700_001, end: 12_759_999 }, + { code: "3526605", start: 12_760_000, end: 12_799_999 }, + { code: "3541901", start: 12_800_000, end: 12_819_999 }, + { code: "3503505", start: 12_820_000, end: 12_829_999 }, + { code: "3549607", start: 12_830_000, end: 12_849_999 }, + { code: "3504909", start: 12_850_000, end: 12_869_999 }, + { code: "3503158", start: 12_870_000, end: 12_899_999 }, + { code: "3507605", start: 12_900_001, end: 12_929_999 }, + { code: "3554953", start: 12_930_000, end: 12_934_999 }, + { code: "3556354", start: 12_935_000, end: 12_939_999 }, + { code: "3504107", start: 12_940_001, end: 12_954_999 }, + { code: "3507100", start: 12_955_000, end: 12_959_999 }, + { code: "3532405", start: 12_960_000, end: 12_969_999 }, + { code: "3538600", start: 12_970_000, end: 12_979_999 }, + { code: "3525508", start: 12_980_000, end: 12_989_999 }, + { code: "3536802", start: 12_990_000, end: 12_994_999 }, + { code: "3538204", start: 12_995_000, end: 12_999_999 }, + { code: "3509502", start: 13_000_001, end: 13_139_999 }, + { code: "3536505", start: 13_140_001, end: 13_149_999 }, + { code: "3512803", start: 13_150_000, end: 13_159_999 }, + { code: "3503802", start: 13_160_000, end: 13_164_999 }, + { code: "3515152", start: 13_165_000, end: 13_169_999 }, + { code: "3552403", start: 13_170_001, end: 13_182_999 }, + { code: "3519071", start: 13_183_001, end: 13_189_999 }, + { code: "3531803", start: 13_190_000, end: 13_199_999 }, + { code: "3525904", start: 13_200_001, end: 13_219_999 }, + { code: "3556503", start: 13_220_001, end: 13_229_999 }, + { code: "3509601", start: 13_230_001, end: 13_239_999 }, + { code: "3525201", start: 13_240_000, end: 13_249_999 }, + { code: "3523404", start: 13_250_001, end: 13_259_999 }, + { code: "3532009", start: 13_260_000, end: 13_269_999 }, + { code: "3556206", start: 13_270_001, end: 13_279_999 }, + { code: "3556701", start: 13_280_001, end: 13_289_999 }, + { code: "3527306", start: 13_290_000, end: 13_294_999 }, + { code: "3524006", start: 13_295_000, end: 13_299_999 }, + { code: "3523909", start: 13_300_001, end: 13_314_999 }, + { code: "3508405", start: 13_315_000, end: 13_319_999 }, + { code: "3545209", start: 13_320_001, end: 13_329_999 }, + { code: "3520509", start: 13_330_001, end: 13_349_999 }, + { code: "3514908", start: 13_350_000, end: 13_359_999 }, + { code: "3510401", start: 13_360_000, end: 13_369_999 }, + { code: "3542107", start: 13_370_000, end: 13_374_999 }, + { code: "3530904", start: 13_375_000, end: 13_379_999 }, + { code: "3533403", start: 13_380_001, end: 13_389_999 }, + { code: "3544004", start: 13_390_000, end: 13_399_999 }, + { code: "3538709", start: 13_400_001, end: 13_439_999 }, + { code: "3545159", start: 13_440_000, end: 13_449_999 }, + { code: "3545803", start: 13_450_001, end: 13_464_999 }, + { code: "3501608", start: 13_465_001, end: 13_479_999 }, + { code: "3526902", start: 13_480_001, end: 13_489_999 }, + { code: "3512407", start: 13_490_000, end: 13_494_999 }, + { code: "3521408", start: 13_495_000, end: 13_499_999 }, + { code: "3543907", start: 13_500_001, end: 13_509_999 }, + { code: "3546702", start: 13_510_000, end: 13_514_999 }, + { code: "3511706", start: 13_515_000, end: 13_519_999 }, + { code: "3550407", start: 13_520_000, end: 13_524_999 }, + { code: "3500600", start: 13_525_000, end: 13_529_999 }, + { code: "3523602", start: 13_530_000, end: 13_536_999 }, + { code: "3521101", start: 13_537_000, end: 13_539_999 }, + { code: "3512704", start: 13_540_000, end: 13_549_999 }, + { code: "3502002", start: 13_550_000, end: 13_559_999 }, + { code: "3548906", start: 13_560_001, end: 13_579_999 }, + { code: "3542909", start: 13_580_000, end: 13_589_999 }, + { code: "3514304", start: 13_590_000, end: 13_599_999 }, + { code: "3503307", start: 13_600_001, end: 13_609_999 }, + { code: "3526704", start: 13_610_001, end: 13_624_999 }, + { code: "3546207", start: 13_625_000, end: 13_629_999 }, + { code: "3539301", start: 13_630_001, end: 13_649_999 }, + { code: "3546306", start: 13_650_000, end: 13_659_999 }, + { code: "3540705", start: 13_660_000, end: 13_669_999 }, + { code: "3547502", start: 13_670_000, end: 13_689_999 }, + { code: "3513702", start: 13_690_000, end: 13_699_999 }, + { code: "3510807", start: 13_700_000, end: 13_709_999 }, + { code: "3553302", start: 13_710_000, end: 13_714_999 }, + { code: "3523800", start: 13_715_000, end: 13_719_999 }, + { code: "3549706", start: 13_720_000, end: 13_729_999 }, + { code: "3530508", start: 13_730_001, end: 13_759_999 }, + { code: "3553609", start: 13_760_000, end: 13_769_999 }, + { code: "3508702", start: 13_770_000, end: 13_779_999 }, + { code: "3513900", start: 13_780_000, end: 13_789_999 }, + { code: "3550803", start: 13_790_000, end: 13_799_999 }, + { code: "3530805", start: 13_800_001, end: 13_819_999 }, + { code: "3524709", start: 13_820_000, end: 13_824_999 }, + { code: "3519055", start: 13_825_000, end: 13_829_999 }, + { code: "3548005", start: 13_830_000, end: 13_834_999 }, + { code: "3512209", start: 13_835_000, end: 13_839_999 }, + { code: "3530706", start: 13_840_001, end: 13_856_999 }, + { code: "3557303", start: 13_857_000, end: 13_859_999 }, + { code: "3500303", start: 13_860_000, end: 13_869_999 }, + { code: "3549102", start: 13_870_001, end: 13_879_999 }, + { code: "3556404", start: 13_880_000, end: 13_889_999 }, + { code: "3500402", start: 13_890_000, end: 13_899_999 }, + { code: "3501905", start: 13_900_001, end: 13_909_999 }, + { code: "3531209", start: 13_910_000, end: 13_919_999 }, + { code: "3537107", start: 13_920_000, end: 13_929_999 }, + { code: "3551603", start: 13_930_000, end: 13_939_999 }, + { code: "3500501", start: 13_940_000, end: 13_949_999 }, + { code: "3527009", start: 13_950_000, end: 13_959_999 }, + { code: "3552106", start: 13_960_000, end: 13_969_999 }, + { code: "3522604", start: 13_970_001, end: 13_989_999 }, + { code: "3515186", start: 13_990_000, end: 13_994_999 }, + { code: "3548104", start: 13_995_000, end: 13_999_999 }, + { code: "3543402", start: 14_000_001, end: 14_114_999 }, + { code: "3518859", start: 14_115_000, end: 14_119_999 }, + { code: "3514601", start: 14_120_000, end: 14_139_999 }, + { code: "3513108", start: 14_140_000, end: 14_149_999 }, + { code: "3551504", start: 14_150_000, end: 14_159_999 }, + { code: "3551702", start: 14_160_001, end: 14_179_999 }, + { code: "3540200", start: 14_180_000, end: 14_199_999 }, + { code: "3550902", start: 14_200_000, end: 14_209_999 }, + { code: "3527603", start: 14_210_000, end: 14_229_999 }, + { code: "3551405", start: 14_230_000, end: 14_239_999 }, + { code: "3509403", start: 14_240_000, end: 14_249_999 }, + { code: "3546256", start: 14_250_000, end: 14_259_999 }, + { code: "3510906", start: 14_260_000, end: 14_269_999 }, + { code: "3547601", start: 14_270_000, end: 14_299_999 }, + { code: "3505906", start: 14_300_000, end: 14_339_999 }, + { code: "3507803", start: 14_340_000, end: 14_349_999 }, + { code: "3501004", start: 14_350_000, end: 14_389_999 }, + { code: "3547908", start: 14_390_000, end: 14_399_999 }, + { code: "3516200", start: 14_400_001, end: 14_414_999 }, + { code: "3536307", start: 14_415_000, end: 14_419_999 }, + { code: "3523701", start: 14_420_000, end: 14_429_999 }, + { code: "3542701", start: 14_430_000, end: 14_439_999 }, + { code: "3549508", start: 14_440_000, end: 14_444_999 }, + { code: "3543105", start: 14_445_000, end: 14_449_999 }, + { code: "3525409", start: 14_450_000, end: 14_459_999 }, + { code: "3513207", start: 14_460_000, end: 14_469_999 }, + { code: "3537008", start: 14_470_000, end: 14_489_999 }, + { code: "3543600", start: 14_490_000, end: 14_499_999 }, + { code: "3524105", start: 14_500_000, end: 14_529_999 }, + { code: "3529708", start: 14_530_000, end: 14_539_999 }, + { code: "3520103", start: 14_540_000, end: 14_549_999 }, + { code: "3503000", start: 14_550_000, end: 14_569_999 }, + { code: "3508207", start: 14_570_000, end: 14_579_999 }, + { code: "3517703", start: 14_580_000, end: 14_599_999 }, + { code: "3549409", start: 14_600_000, end: 14_609_999 }, + { code: "3521309", start: 14_610_000, end: 14_619_999 }, + { code: "3534302", start: 14_620_000, end: 14_639_999 }, + { code: "3531902", start: 14_640_000, end: 14_659_999 }, + { code: "3544905", start: 14_660_000, end: 14_669_999 }, + { code: "3533601", start: 14_670_000, end: 14_679_999 }, + { code: "3525102", start: 14_680_000, end: 14_699_999 }, + { code: "3506102", start: 14_700_001, end: 14_719_999 }, + { code: "3553203", start: 14_720_000, end: 14_724_999 }, + { code: "3553104", start: 14_725_000, end: 14_729_999 }, + { code: "3531506", start: 14_730_000, end: 14_734_999 }, + { code: "3551900", start: 14_735_000, end: 14_739_999 }, + { code: "3556800", start: 14_740_000, end: 14_744_999 }, + { code: "3554409", start: 14_745_000, end: 14_749_999 }, + { code: "3539509", start: 14_750_000, end: 14_764_999 }, + { code: "3553658", start: 14_765_000, end: 14_769_999 }, + { code: "3512001", start: 14_770_000, end: 14_774_999 }, + { code: "3524204", start: 14_775_000, end: 14_779_999 }, + { code: "3505500", start: 14_780_001, end: 14_789_999 }, + { code: "3517406", start: 14_790_000, end: 14_794_999 }, + { code: "3512100", start: 14_795_000, end: 14_799_999 }, + { code: "3503208", start: 14_800_001, end: 14_812_999 }, + { code: "3516853", start: 14_813_000, end: 14_814_999 }, + { code: "3519303", start: 14_815_000, end: 14_819_999 }, + { code: "3501707", start: 14_820_000, end: 14_824_999 }, + { code: "3546900", start: 14_825_000, end: 14_829_999 }, + { code: "3543709", start: 14_830_000, end: 14_834_999 }, + { code: "3532058", start: 14_835_000, end: 14_839_999 }, + { code: "3518602", start: 14_840_000, end: 14_849_999 }, + { code: "3540903", start: 14_850_000, end: 14_859_999 }, + { code: "3505609", start: 14_860_000, end: 14_869_999 }, + { code: "3524303", start: 14_870_001, end: 14_899_999 }, + { code: "3522703", start: 14_900_000, end: 14_909_999 }, + { code: "3552700", start: 14_910_000, end: 14_919_999 }, + { code: "3532900", start: 14_920_000, end: 14_929_999 }, + { code: "3506706", start: 14_930_000, end: 14_934_999 }, + { code: "3554755", start: 14_935_000, end: 14_939_999 }, + { code: "3519600", start: 14_940_000, end: 14_954_999 }, + { code: "3507407", start: 14_955_000, end: 14_959_999 }, + { code: "3533502", start: 14_960_000, end: 14_979_999 }, + { code: "3544806", start: 14_980_000, end: 14_989_999 }, + { code: "3521507", start: 14_990_000, end: 14_999_999 }, + { code: "3549805", start: 15_000_001, end: 15_104_999 }, + { code: "3540804", start: 15_105_000, end: 15_107_999 }, + { code: "3521150", start: 15_108_000, end: 15_109_999 }, + { code: "3517505", start: 15_110_000, end: 15_114_999 }, + { code: "3504602", start: 15_115_000, end: 15_119_999 }, + { code: "3532504", start: 15_120_000, end: 15_129_999 }, + { code: "3530300", start: 15_130_000, end: 15_139_999 }, + { code: "3504800", start: 15_140_000, end: 15_144_999 }, + { code: "3530409", start: 15_145_000, end: 15_149_999 }, + { code: "3531407", start: 15_150_000, end: 15_154_999 }, + { code: "3524501", start: 15_155_000, end: 15_159_999 }, + { code: "3539905", start: 15_160_000, end: 15_169_999 }, + { code: "3553401", start: 15_170_000, end: 15_179_999 }, + { code: "3551306", start: 15_180_000, end: 15_189_999 }, + { code: "3532603", start: 15_190_000, end: 15_199_999 }, + { code: "3525706", start: 15_200_000, end: 15_209_999 }, + { code: "3532801", start: 15_210_000, end: 15_219_999 }, + { code: "3529500", start: 15_220_000, end: 15_224_999 }, + { code: "3555356", start: 15_225_000, end: 15_229_999 }, + { code: "3500204", start: 15_230_000, end: 15_239_999 }, + { code: "3532702", start: 15_240_000, end: 15_249_999 }, + { code: "3555703", start: 15_250_000, end: 15_259_999 }, + { code: "3539608", start: 15_260_000, end: 15_264_999 }, + { code: "3557154", start: 15_265_000, end: 15_269_999 }, + { code: "3528106", start: 15_270_000, end: 15_274_999 }, + { code: "3531001", start: 15_275_000, end: 15_279_999 }, + { code: "3555208", start: 15_280_000, end: 15_284_999 }, + { code: "3527256", start: 15_285_000, end: 15_289_999 }, + { code: "3508108", start: 15_290_000, end: 15_299_999 }, + { code: "3516903", start: 15_300_000, end: 15_309_999 }, + { code: "3528304", start: 15_310_000, end: 15_312_999 }, + { code: "3532868", start: 15_313_000, end: 15_314_999 }, + { code: "3549250", start: 15_315_000, end: 15_319_999 }, + { code: "3515905", start: 15_320_000, end: 15_329_999 }, + { code: "3516804", start: 15_330_000, end: 15_339_999 }, + { code: "3533304", start: 15_340_000, end: 15_349_999 }, + { code: "3504206", start: 15_350_000, end: 15_354_999 }, + { code: "3518909", start: 15_355_000, end: 15_359_999 }, + { code: "3552304", start: 15_360_000, end: 15_369_999 }, + { code: "3537404", start: 15_370_000, end: 15_379_999 }, + { code: "3552551", start: 15_380_000, end: 15_384_999 }, + { code: "3520442", start: 15_385_000, end: 15_389_999 }, + { code: "3523008", start: 15_390_000, end: 15_399_999 }, + { code: "3533908", start: 15_400_000, end: 15_409_999 }, + { code: "3509304", start: 15_410_000, end: 15_419_999 }, + { code: "3517901", start: 15_420_000, end: 15_424_999 }, + { code: "3514957", start: 15_425_000, end: 15_429_999 }, + { code: "3500907", start: 15_430_000, end: 15_439_999 }, + { code: "3533007", start: 15_440_000, end: 15_449_999 }, + { code: "3534005", start: 15_450_000, end: 15_459_999 }, + { code: "3519808", start: 15_460_000, end: 15_469_999 }, + { code: "3535002", start: 15_470_000, end: 15_479_999 }, + { code: "3534203", start: 15_480_000, end: 15_489_999 }, + { code: "3536604", start: 15_490_000, end: 15_494_999 }, + { code: "3544202", start: 15_495_000, end: 15_499_999 }, + { code: "3557105", start: 15_500_001, end: 15_519_999 }, + { code: "3556107", start: 15_520_000, end: 15_524_999 }, + { code: "3536257", start: 15_525_000, end: 15_529_999 }, + { code: "3512902", start: 15_530_000, end: 15_539_999 }, + { code: "3501202", start: 15_540_000, end: 15_549_999 }, + { code: "3501806", start: 15_550_000, end: 15_559_999 }, + { code: "3540309", start: 15_560_000, end: 15_569_999 }, + { code: "3510708", start: 15_570_000, end: 15_579_999 }, + { code: "3530003", start: 15_580_000, end: 15_599_999 }, + { code: "3515509", start: 15_600_000, end: 15_619_999 }, + { code: "3528205", start: 15_620_000, end: 15_624_999 }, + { code: "3529609", start: 15_625_000, end: 15_629_999 }, + { code: "3536901", start: 15_630_000, end: 15_639_999 }, + { code: "3549201", start: 15_640_000, end: 15_649_999 }, + { code: "3515202", start: 15_650_000, end: 15_669_999 }, + { code: "3540408", start: 15_670_000, end: 15_679_999 }, + { code: "3518008", start: 15_680_000, end: 15_684_999 }, + { code: "3534757", start: 15_685_000, end: 15_689_999 }, + { code: "3520707", start: 15_690_000, end: 15_699_999 }, + { code: "3524808", start: 15_700_001, end: 15_709_999 }, + { code: "3549003", start: 15_710_000, end: 15_712_999 }, + { code: "3556958", start: 15_713_000, end: 15_714_999 }, + { code: "3513850", start: 15_715_000, end: 15_717_999 }, + { code: "3540259", start: 15_718_000, end: 15_719_999 }, + { code: "3535200", start: 15_720_000, end: 15_729_999 }, + { code: "3529104", start: 15_730_000, end: 15_734_999 }, + { code: "3502606", start: 15_735_000, end: 15_739_999 }, + { code: "3514205", start: 15_740_000, end: 15_744_999 }, + { code: "3535903", start: 15_745_000, end: 15_747_999 }, + { code: "3529658", start: 15_748_000, end: 15_749_999 }, + { code: "3545704", start: 15_750_000, end: 15_754_999 }, + { code: "3555307", start: 15_755_000, end: 15_759_999 }, + { code: "3555802", start: 15_760_000, end: 15_762_999 }, + { code: "3503950", start: 15_763_000, end: 15_764_999 }, + { code: "3547205", start: 15_765_000, end: 15_767_999 }, + { code: "3547650", start: 15_768_000, end: 15_769_999 }, + { code: "3554904", start: 15_770_000, end: 15_772_999 }, + { code: "3532843", start: 15_773_000, end: 15_774_999 }, + { code: "3546603", start: 15_775_000, end: 15_779_999 }, + { code: "3547403", start: 15_780_000, end: 15_784_999 }, + { code: "3546108", start: 15_785_000, end: 15_789_999 }, + { code: "3544509", start: 15_790_000, end: 15_799_999 }, + { code: "3511102", start: 15_800_001, end: 15_819_999 }, + { code: "3539004", start: 15_820_000, end: 15_822_999 }, + { code: "3514924", start: 15_823_000, end: 15_824_999 }, + { code: "3535705", start: 15_825_000, end: 15_827_999 }, + { code: "3535101", start: 15_828_000, end: 15_829_999 }, + { code: "3538105", start: 15_830_000, end: 15_839_999 }, + { code: "3521903", start: 15_840_000, end: 15_844_999 }, + { code: "3528858", start: 15_845_000, end: 15_849_999 }, + { code: "3556008", start: 15_850_000, end: 15_859_999 }, + { code: "3519402", start: 15_860_000, end: 15_869_999 }, + { code: "3511201", start: 15_870_000, end: 15_879_999 }, + { code: "3552601", start: 15_880_000, end: 15_884_999 }, + { code: "3533254", start: 15_885_000, end: 15_889_999 }, + { code: "3555604", start: 15_890_000, end: 15_894_999 }, + { code: "3511300", start: 15_895_000, end: 15_899_999 }, + { code: "3553708", start: 15_900_000, end: 15_909_999 }, + { code: "3531308", start: 15_910_000, end: 15_919_999 }, + { code: "3556909", start: 15_920_000, end: 15_929_999 }, + { code: "3510104", start: 15_930_000, end: 15_939_999 }, + { code: "3515608", start: 15_940_000, end: 15_949_999 }, + { code: "3545605", start: 15_950_000, end: 15_959_999 }, + { code: "3503703", start: 15_960_000, end: 15_969_999 }, + { code: "3546504", start: 15_970_000, end: 15_979_999 }, + { code: "3514007", start: 15_980_000, end: 15_989_999 }, + { code: "3529302", start: 15_990_001, end: 15_999_999 }, + { code: "3502804", start: 16_000_001, end: 16_129_999 }, + { code: "3548054", start: 16_130_000, end: 16_199_999 }, + { code: "3506508", start: 16_200_001, end: 16_209_999 }, + { code: "3506409", start: 16_210_000, end: 16_219_999 }, + { code: "3516507", start: 16_220_000, end: 16_229_999 }, + { code: "3537701", start: 16_230_000, end: 16_239_999 }, + { code: "3548401", start: 16_240_000, end: 16_249_999 }, + { code: "3511904", start: 16_250_000, end: 16_259_999 }, + { code: "3512506", start: 16_260_000, end: 16_264_999 }, + { code: "3507753", start: 16_265_000, end: 16_269_999 }, + { code: "3517109", start: 16_270_000, end: 16_289_999 }, + { code: "3507704", start: 16_290_000, end: 16_299_999 }, + { code: "3537305", start: 16_300_001, end: 16_309_999 }, + { code: "3501103", start: 16_310_000, end: 16_339_999 }, + { code: "3527702", start: 16_340_000, end: 16_349_999 }, + { code: "3505104", start: 16_350_000, end: 16_359_999 }, + { code: "3504404", start: 16_360_000, end: 16_369_999 }, + { code: "3541604", start: 16_370_000, end: 16_399_999 }, + { code: "3527108", start: 16_400_001, end: 16_429_999 }, + { code: "3517208", start: 16_430_000, end: 16_439_999 }, + { code: "3544608", start: 16_440_000, end: 16_449_999 }, + { code: "3517000", start: 16_450_000, end: 16_479_999 }, + { code: "3517307", start: 16_480_000, end: 16_499_999 }, + { code: "3508801", start: 16_500_000, end: 16_569_999 }, + { code: "3518107", start: 16_570_000, end: 16_599_999 }, + { code: "3538907", start: 16_600_000, end: 16_639_999 }, + { code: "3504701", start: 16_640_000, end: 16_649_999 }, + { code: "3555901", start: 16_650_000, end: 16_659_999 }, + { code: "3540101", start: 16_660_000, end: 16_669_999 }, + { code: "3541109", start: 16_670_000, end: 16_679_999 }, + { code: "3504305", start: 16_680_000, end: 16_699_999 }, + { code: "3518206", start: 16_700_000, end: 16_749_999 }, + { code: "3544400", start: 16_750_000, end: 16_789_999 }, + { code: "3506201", start: 16_790_000, end: 16_799_999 }, + { code: "3530102", start: 16_800_000, end: 16_849_999 }, + { code: "3526506", start: 16_850_000, end: 16_879_999 }, + { code: "3556305", start: 16_880_000, end: 16_899_999 }, + { code: "3502101", start: 16_900_001, end: 16_919_999 }, + { code: "3511003", start: 16_920_000, end: 16_939_999 }, + { code: "3533205", start: 16_940_000, end: 16_949_999 }, + { code: "3532108", start: 16_950_000, end: 16_979_999 }, + { code: "3517802", start: 16_980_000, end: 16_999_999 }, + { code: "3506003", start: 17_000_001, end: 17_119_999 }, + { code: "3500709", start: 17_120_000, end: 17_149_999 }, + { code: "3536570", start: 17_150_000, end: 17_159_999 }, + { code: "3503406", start: 17_160_000, end: 17_179_999 }, + { code: "3519105", start: 17_180_000, end: 17_189_999 }, + { code: "3542503", start: 17_190_000, end: 17_199_999 }, + { code: "3525300", start: 17_200_001, end: 17_229_999 }, + { code: "3522901", start: 17_230_000, end: 17_239_999 }, + { code: "3506805", start: 17_240_000, end: 17_249_999 }, + { code: "3505203", start: 17_250_000, end: 17_259_999 }, + { code: "3522000", start: 17_260_000, end: 17_269_999 }, + { code: "3507308", start: 17_270_000, end: 17_279_999 }, + { code: "3536703", start: 17_280_000, end: 17_289_999 }, + { code: "3528007", start: 17_290_000, end: 17_299_999 }, + { code: "3514106", start: 17_300_000, end: 17_319_999 }, + { code: "3529807", start: 17_320_000, end: 17_339_999 }, + { code: "3505302", start: 17_340_000, end: 17_349_999 }, + { code: "3520004", start: 17_350_000, end: 17_359_999 }, + { code: "3554706", start: 17_360_000, end: 17_369_999 }, + { code: "3547007", start: 17_370_000, end: 17_379_999 }, + { code: "3507902", start: 17_380_000, end: 17_399_999 }, + { code: "3516705", start: 17_400_000, end: 17_409_999 }, + { code: "3501400", start: 17_410_000, end: 17_419_999 }, + { code: "3527801", start: 17_420_000, end: 17_429_999 }, + { code: "3501509", start: 17_430_000, end: 17_439_999 }, + { code: "3555505", start: 17_440_000, end: 17_449_999 }, + { code: "3516606", start: 17_450_000, end: 17_454_999 }, + { code: "3515657", start: 17_455_000, end: 17_469_999 }, + { code: "3514502", start: 17_470_000, end: 17_474_999 }, + { code: "3527504", start: 17_475_000, end: 17_479_999 }, + { code: "3508306", start: 17_480_000, end: 17_489_999 }, + { code: "3539400", start: 17_490_000, end: 17_499_999 }, + { code: "3529005", start: 17_500_001, end: 17_539_999 }, + { code: "3533700", start: 17_540_000, end: 17_549_999 }, + { code: "3525805", start: 17_550_000, end: 17_559_999 }, + { code: "3556602", start: 17_560_000, end: 17_569_999 }, + { code: "3534104", start: 17_570_000, end: 17_579_999 }, + { code: "3540002", start: 17_580_000, end: 17_589_999 }, + { code: "3541802", start: 17_590_000, end: 17_599_999 }, + { code: "3555000", start: 17_600_001, end: 17_629_999 }, + { code: "3503356", start: 17_630_000, end: 17_649_999 }, + { code: "3519006", start: 17_650_000, end: 17_669_999 }, + { code: "3542008", start: 17_670_000, end: 17_679_999 }, + { code: "3519204", start: 17_680_000, end: 17_689_999 }, + { code: "3505807", start: 17_690_000, end: 17_699_999 }, + { code: "3534609", start: 17_700_000, end: 17_709_999 }, + { code: "3544707", start: 17_710_000, end: 17_719_999 }, + { code: "3545100", start: 17_720_000, end: 17_729_999 }, + { code: "3536000", start: 17_730_000, end: 17_739_999 }, + { code: "3543808", start: 17_740_000, end: 17_759_999 }, + { code: "3520806", start: 17_760_000, end: 17_779_999 }, + { code: "3527405", start: 17_780_000, end: 17_789_999 }, + { code: "3540853", start: 17_790_000, end: 17_799_999 }, + { code: "3500105", start: 17_800_000, end: 17_809_999 }, + { code: "3528908", start: 17_810_000, end: 17_829_999 }, + { code: "3516002", start: 17_830_000, end: 17_859_999 }, + { code: "3534906", start: 17_860_000, end: 17_869_999 }, + { code: "3515806", start: 17_870_000, end: 17_879_999 }, + { code: "3521606", start: 17_880_000, end: 17_889_999 }, + { code: "3526001", start: 17_890_000, end: 17_899_999 }, + { code: "3514403", start: 17_900_000, end: 17_919_999 }, + { code: "3534807", start: 17_920_000, end: 17_929_999 }, + { code: "3555109", start: 17_930_000, end: 17_939_999 }, + { code: "3547106", start: 17_940_000, end: 17_949_999 }, + { code: "3533106", start: 17_950_000, end: 17_959_999 }, + { code: "3531605", start: 17_960_000, end: 17_969_999 }, + { code: "3549300", start: 17_970_000, end: 17_979_999 }, + { code: "3535408", start: 17_980_000, end: 17_989_999 }, + { code: "3536406", start: 17_990_000, end: 17_999_999 }, + { code: "3552205", start: 18_000_001, end: 18_109_999 }, + { code: "3557006", start: 18_110_001, end: 18_119_999 }, + { code: "3528403", start: 18_120_000, end: 18_124_999 }, + { code: "3501152", start: 18_125_000, end: 18_129_999 }, + { code: "3550605", start: 18_130_001, end: 18_146_999 }, + { code: "3502754", start: 18_147_000, end: 18_149_999 }, + { code: "3519709", start: 18_150_000, end: 18_159_999 }, + { code: "3545308", start: 18_160_000, end: 18_169_999 }, + { code: "3537800", start: 18_170_000, end: 18_179_999 }, + { code: "3553500", start: 18_180_000, end: 18_184_999 }, + { code: "3537909", start: 18_185_000, end: 18_189_999 }, + { code: "3502903", start: 18_190_000, end: 18_194_999 }, + { code: "3510302", start: 18_195_000, end: 18_199_999 }, + { code: "3522307", start: 18_200_001, end: 18_219_999 }, + { code: "3500758", start: 18_220_000, end: 18_224_999 }, + { code: "3551108", start: 18_225_000, end: 18_229_999 }, + { code: "3550209", start: 18_230_000, end: 18_239_999 }, + { code: "3502200", start: 18_240_000, end: 18_244_999 }, + { code: "3509452", start: 18_245_000, end: 18_249_999 }, + { code: "3518503", start: 18_250_000, end: 18_254_999 }, + { code: "3541653", start: 18_255_000, end: 18_259_999 }, + { code: "3540507", start: 18_260_000, end: 18_264_999 }, + { code: "3554656", start: 18_265_000, end: 18_269_999 }, + { code: "3554003", start: 18_270_001, end: 18_284_999 }, + { code: "3511607", start: 18_285_000, end: 18_289_999 }, + { code: "3508009", start: 18_290_000, end: 18_299_999 }, + { code: "3510203", start: 18_300_001, end: 18_309_999 }, + { code: "3517604", start: 18_310_000, end: 18_314_999 }, + { code: "3543253", start: 18_315_000, end: 18_319_999 }, + { code: "3502705", start: 18_320_000, end: 18_324_999 }, + { code: "3505351", start: 18_325_000, end: 18_329_999 }, + { code: "3521200", start: 18_330_000, end: 18_359_999 }, + { code: "3522158", start: 18_360_000, end: 18_379_999 }, + { code: "3542800", start: 18_380_000, end: 18_384_999 }, + { code: "3522653", start: 18_385_000, end: 18_399_999 }, + { code: "3522406", start: 18_400_001, end: 18_424_999 }, + { code: "3553856", start: 18_425_000, end: 18_429_999 }, + { code: "3543006", start: 18_430_000, end: 18_434_999 }, + { code: "3532827", start: 18_435_000, end: 18_439_999 }, + { code: "3521705", start: 18_440_000, end: 18_459_999 }, + { code: "3523206", start: 18_460_000, end: 18_469_999 }, + { code: "3543501", start: 18_470_000, end: 18_474_999 }, + { code: "3507159", start: 18_475_000, end: 18_479_999 }, + { code: "3522802", start: 18_480_000, end: 18_489_999 }, + { code: "3505005", start: 18_490_000, end: 18_499_999 }, + { code: "3526407", start: 18_500_000, end: 18_519_999 }, + { code: "3511508", start: 18_520_000, end: 18_529_999 }, + { code: "3554508", start: 18_530_000, end: 18_534_999 }, + { code: "3525854", start: 18_535_000, end: 18_539_999 }, + { code: "3540606", start: 18_540_000, end: 18_549_999 }, + { code: "3507001", start: 18_550_000, end: 18_559_999 }, + { code: "3521002", start: 18_560_000, end: 18_569_999 }, + { code: "3512308", start: 18_570_000, end: 18_579_999 }, + { code: "3537503", start: 18_580_000, end: 18_589_999 }, + { code: "3506904", start: 18_590_000, end: 18_599_999 }, + { code: "3507506", start: 18_600_001, end: 18_619_999 }, + { code: "3502309", start: 18_620_000, end: 18_639_999 }, + { code: "3536109", start: 18_640_000, end: 18_649_999 }, + { code: "3550100", start: 18_650_000, end: 18_659_999 }, + { code: "3541059", start: 18_660_000, end: 18_669_999 }, + { code: "3503604", start: 18_670_000, end: 18_674_999 }, + { code: "3507456", start: 18_675_000, end: 18_679_999 }, + { code: "3526803", start: 18_680_001, end: 18_689_999 }, + { code: "3523503", start: 18_690_000, end: 18_699_999 }, + { code: "3504503", start: 18_700_001, end: 18_709_999 }, + { code: "3503109", start: 18_710_000, end: 18_719_999 }, + { code: "3535804", start: 18_720_000, end: 18_729_999 }, + { code: "3521804", start: 18_730_000, end: 18_739_999 }, + { code: "3553807", start: 18_740_000, end: 18_744_999 }, + { code: "3512605", start: 18_745_000, end: 18_759_999 }, + { code: "3511409", start: 18_760_000, end: 18_769_999 }, + { code: "3500550", start: 18_770_000, end: 18_774_999 }, + { code: "3519253", start: 18_775_000, end: 18_779_999 }, + { code: "3528601", start: 18_780_000, end: 18_789_999 }, + { code: "3533809", start: 18_790_000, end: 18_799_999 }, + { code: "3538808", start: 18_800_000, end: 18_829_999 }, + { code: "3554201", start: 18_830_000, end: 18_839_999 }, + { code: "3551207", start: 18_840_000, end: 18_859_999 }, + { code: "3554607", start: 18_860_000, end: 18_869_999 }, + { code: "3515400", start: 18_870_000, end: 18_889_999 }, + { code: "3553005", start: 18_890_000, end: 18_899_999 }, + { code: "3546405", start: 18_900_000, end: 18_934_999 }, + { code: "3515194", start: 18_935_000, end: 18_939_999 }, + { code: "3550506", start: 18_940_000, end: 18_949_999 }, + { code: "3520905", start: 18_950_000, end: 18_959_999 }, + { code: "3506300", start: 18_960_000, end: 18_969_999 }, + { code: "3557204", start: 18_970_000, end: 18_989_999 }, + { code: "3510153", start: 18_990_000, end: 18_999_999 }, + { code: "3541406", start: 19_000_001, end: 19_159_999 }, + { code: "3501301", start: 19_160_000, end: 19_179_999 }, + { code: "3500808", start: 19_180_000, end: 19_189_999 }, + { code: "3548302", start: 19_190_000, end: 19_199_999 }, + { code: "3539202", start: 19_200_000, end: 19_209_999 }, + { code: "3553906", start: 19_210_000, end: 19_219_999 }, + { code: "3532207", start: 19_220_000, end: 19_229_999 }, + { code: "3515301", start: 19_230_000, end: 19_249_999 }, + { code: "3545506", start: 19_250_000, end: 19_259_999 }, + { code: "3530201", start: 19_260_000, end: 19_272_999 }, + { code: "3544251", start: 19_273_000, end: 19_274_999 }, + { code: "3515350", start: 19_275_000, end: 19_279_999 }, + { code: "3554300", start: 19_280_000, end: 19_299_999 }, + { code: "3541208", start: 19_300_000, end: 19_349_999 }, + { code: "3515129", start: 19_350_000, end: 19_359_999 }, + { code: "3547700", start: 19_360_000, end: 19_379_999 }, + { code: "3543238", start: 19_380_000, end: 19_399_999 }, + { code: "3541505", start: 19_400_000, end: 19_409_999 }, + { code: "3538303", start: 19_410_000, end: 19_429_999 }, + { code: "3528700", start: 19_430_000, end: 19_449_999 }, + { code: "3509106", start: 19_450_000, end: 19_469_999 }, + { code: "3541307", start: 19_470_000, end: 19_499_999 }, + { code: "3529203", start: 19_500_000, end: 19_529_999 }, + { code: "3508900", start: 19_530_000, end: 19_559_999 }, + { code: "3520608", start: 19_560_000, end: 19_569_999 }, + { code: "3542404", start: 19_570_000, end: 19_579_999 }, + { code: "3502408", start: 19_580_000, end: 19_589_999 }, + { code: "3552908", start: 19_590_000, end: 19_599_999 }, + { code: "3542206", start: 19_600_000, end: 19_639_999 }, + { code: "3519907", start: 19_640_000, end: 19_644_999 }, + { code: "3532157", start: 19_645_000, end: 19_679_999 }, + { code: "3525607", start: 19_680_000, end: 19_699_999 }, + { code: "3535507", start: 19_700_000, end: 19_739_999 }, + { code: "3507209", start: 19_740_000, end: 19_749_999 }, + { code: "3527900", start: 19_750_000, end: 19_769_999 }, + { code: "3534500", start: 19_770_000, end: 19_779_999 }, + { code: "3541703", start: 19_780_000, end: 19_799_999 }, + { code: "3504008", start: 19_800_001, end: 19_819_999 }, + { code: "3553955", start: 19_820_000, end: 19_829_999 }, + { code: "3514700", start: 19_830_000, end: 19_839_999 }, + { code: "3528809", start: 19_840_000, end: 19_859_999 }, + { code: "3513306", start: 19_860_000, end: 19_864_999 }, + { code: "3537156", start: 19_865_000, end: 19_869_999 }, + { code: "3516101", start: 19_870_000, end: 19_879_999 }, + { code: "3510005", start: 19_880_000, end: 19_899_999 }, + { code: "3534708", start: 19_900_001, end: 19_919_999 }, + { code: "3545407", start: 19_920_000, end: 19_929_999 }, + { code: "3543204", start: 19_930_000, end: 19_939_999 }, + { code: "3519501", start: 19_940_000, end: 19_959_999 }, + { code: "3509809", start: 19_960_000, end: 19_969_999 }, + { code: "3535309", start: 19_970_000, end: 19_989_999 }, + { code: "3539707", start: 19_990_000, end: 19_999_999 }, + { code: "3304557", start: 20_000_001, end: 23_799_999 }, + { code: "3302007", start: 23_800_001, end: 23_859_999 }, + { code: "3302601", start: 23_860_000, end: 23_889_999 }, + { code: "3305554", start: 23_890_001, end: 23_899_999 }, + { code: "3300100", start: 23_900_001, end: 23_969_999 }, + { code: "3303807", start: 23_970_000, end: 23_999_999 }, + { code: "3303302", start: 24_000_001, end: 24_399_999 }, + { code: "3304904", start: 24_400_001, end: 24_799_999 }, + { code: "3301900", start: 24_800_001, end: 24_889_999 }, + { code: "3305752", start: 24_890_000, end: 24_899_999 }, + { code: "3302700", start: 24_900_001, end: 24_999_999 }, + { code: "3301702", start: 25_000_001, end: 25_499_999 }, + { code: "3305109", start: 25_500_001, end: 25_599_999 }, + { code: "3303906", start: 25_600_001, end: 25_779_999 }, + { code: "3305158", start: 25_780_000, end: 25_799_999 }, + { code: "3306008", start: 25_800_001, end: 25_844_999 }, + { code: "3300225", start: 25_845_000, end: 25_849_999 }, + { code: "3303708", start: 25_850_000, end: 25_869_999 }, + { code: "3300951", start: 25_870_000, end: 25_879_999 }, + { code: "3305406", start: 25_880_000, end: 25_899_999 }, + { code: "3302502", start: 25_900_001, end: 25_939_999 }, + { code: "3301850", start: 25_940_001, end: 25_949_999 }, + { code: "3305802", start: 25_950_001, end: 25_999_999 }, + { code: "3303500", start: 26_000_001, end: 26_099_999 }, + { code: "3300456", start: 26_100_001, end: 26_199_999 }, + { code: "3303500", start: 26_200_000, end: 26_299_999 }, + { code: "3304144", start: 26_300_001, end: 26_399_999 }, + { code: "3302270", start: 26_400_001, end: 26_499_999 }, + { code: "3303203", start: 26_500_001, end: 26_549_999 }, + { code: "3302858", start: 26_550_001, end: 26_599_999 }, + { code: "3303609", start: 26_600_000, end: 26_649_999 }, + { code: "3301801", start: 26_650_000, end: 26_699_999 }, + { code: "3302809", start: 26_700_000, end: 26_899_999 }, + { code: "3302908", start: 26_900_000, end: 26_949_999 }, + { code: "3303856", start: 26_950_000, end: 26_999_999 }, + { code: "3300308", start: 27_000_001, end: 27_174_999 }, + { code: "3304003", start: 27_175_000, end: 27_196_999 }, + { code: "3303955", start: 27_197_000, end: 27_199_999 }, + { code: "3306305", start: 27_200_001, end: 27_299_999 }, + { code: "3300407", start: 27_300_001, end: 27_399_999 }, + { code: "3304128", start: 27_400_001, end: 27_459_999 }, + { code: "3304409", start: 27_460_000, end: 27_499_999 }, + { code: "3304201", start: 27_500_001, end: 27_569_999 }, + { code: "3304110", start: 27_570_000, end: 27_579_999 }, + { code: "3302254", start: 27_580_000, end: 27_599_999 }, + { code: "3306107", start: 27_600_000, end: 27_659_999 }, + { code: "3304508", start: 27_660_000, end: 27_699_999 }, + { code: "3306206", start: 27_700_000, end: 27_899_999 }, + { code: "3302403", start: 27_900_001, end: 27_997_999 }, + { code: "3300936", start: 27_998_000, end: 27_999_999 }, + { code: "3301009", start: 28_000_001, end: 28_179_999 }, + { code: "3301157", start: 28_180_000, end: 28_199_999 }, + { code: "3305000", start: 28_200_000, end: 28_229_999 }, + { code: "3304755", start: 28_230_000, end: 28_249_999 }, + { code: "3302056", start: 28_250_000, end: 28_299_999 }, + { code: "3302205", start: 28_300_000, end: 28_349_999 }, + { code: "3302304", start: 28_350_000, end: 28_359_999 }, + { code: "3300605", start: 28_360_000, end: 28_374_999 }, + { code: "3306156", start: 28_375_000, end: 28_379_999 }, + { code: "3303104", start: 28_380_000, end: 28_389_999 }, + { code: "3304102", start: 28_390_000, end: 28_399_999 }, + { code: "3304805", start: 28_400_000, end: 28_429_999 }, + { code: "3300902", start: 28_430_000, end: 28_454_999 }, + { code: "3305133", start: 28_455_000, end: 28_459_999 }, + { code: "3303005", start: 28_460_000, end: 28_469_999 }, + { code: "3304706", start: 28_470_000, end: 28_494_999 }, + { code: "3300159", start: 28_495_000, end: 28_499_999 }, + { code: "3301108", start: 28_500_000, end: 28_539_999 }, + { code: "3301504", start: 28_540_000, end: 28_544_999 }, + { code: "3302452", start: 28_545_000, end: 28_549_999 }, + { code: "3305307", start: 28_550_000, end: 28_569_999 }, + { code: "3302106", start: 28_570_000, end: 28_599_999 }, + { code: "3303401", start: 28_600_001, end: 28_636_999 }, + { code: "3305703", start: 28_637_000, end: 28_639_999 }, + { code: "3301207", start: 28_640_000, end: 28_649_999 }, + { code: "3301603", start: 28_650_000, end: 28_659_999 }, + { code: "3300506", start: 28_660_000, end: 28_679_999 }, + { code: "3300803", start: 28_680_000, end: 28_699_999 }, + { code: "3304151", start: 28_735_000, end: 28_739_999 }, + { code: "3301405", start: 28_740_000, end: 28_749_999 }, + { code: "3305901", start: 28_750_000, end: 28_769_999 }, + { code: "3304607", start: 28_770_000, end: 28_799_999 }, + { code: "3304300", start: 28_800_000, end: 28_819_999 }, + { code: "3305604", start: 28_820_000, end: 28_859_999 }, + { code: "3301306", start: 28_860_000, end: 28_889_999 }, + { code: "3304524", start: 28_890_001, end: 28_899_999 }, + { code: "3300704", start: 28_900_001, end: 28_929_999 }, + { code: "3300258", start: 28_930_000, end: 28_939_999 }, + { code: "3305208", start: 28_940_001, end: 28_949_999 }, + { code: "3300233", start: 28_950_000, end: 28_959_999 }, + { code: "3301876", start: 28_960_000, end: 28_969_999 }, + { code: "3300209", start: 28_970_000, end: 28_989_999 }, + { code: "3305505", start: 28_990_001, end: 28_999_999 }, + { code: "3205309", start: 29_000_001, end: 29_099_999 }, + { code: "3205200", start: 29_100_001, end: 29_129_999 }, + { code: "3205101", start: 29_130_001, end: 29_139_999 }, + { code: "3201308", start: 29_140_001, end: 29_159_999 }, + { code: "3205002", start: 29_160_001, end: 29_184_999 }, + { code: "3202207", start: 29_185_000, end: 29_189_999 }, + { code: "3200607", start: 29_190_001, end: 29_199_999 }, + { code: "3202405", start: 29_200_001, end: 29_229_999 }, + { code: "3200409", start: 29_230_000, end: 29_239_999 }, + { code: "3200300", start: 29_240_000, end: 29_254_999 }, + { code: "3203346", start: 29_255_000, end: 29_259_999 }, + { code: "3201902", start: 29_260_000, end: 29_279_999 }, + { code: "3202603", start: 29_280_000, end: 29_284_999 }, + { code: "3204203", start: 29_285_000, end: 29_289_999 }, + { code: "3204401", start: 29_290_000, end: 29_294_999 }, + { code: "3205036", start: 29_295_000, end: 29_299_999 }, + { code: "3201209", start: 29_300_001, end: 29_329_999 }, + { code: "3202801", start: 29_330_000, end: 29_344_999 }, + { code: "3203320", start: 29_345_000, end: 29_349_999 }, + { code: "3204302", start: 29_350_000, end: 29_359_999 }, + { code: "3201407", start: 29_360_000, end: 29_369_999 }, + { code: "3201704", start: 29_370_000, end: 29_374_999 }, + { code: "3205069", start: 29_375_000, end: 29_379_999 }, + { code: "3203700", start: 29_380_000, end: 29_389_999 }, + { code: "3203007", start: 29_390_000, end: 29_394_999 }, + { code: "3202454", start: 29_395_000, end: 29_397_999 }, + { code: "3202652", start: 29_398_000, end: 29_399_999 }, + { code: "3203403", start: 29_400_000, end: 29_449_999 }, + { code: "3200508", start: 29_450_000, end: 29_459_999 }, + { code: "3201100", start: 29_460_000, end: 29_469_999 }, + { code: "3204807", start: 29_470_000, end: 29_479_999 }, + { code: "3203809", start: 29_480_000, end: 29_489_999 }, + { code: "3200706", start: 29_490_000, end: 29_499_999 }, + { code: "3200201", start: 29_500_000, end: 29_539_999 }, + { code: "3202553", start: 29_540_000, end: 29_549_999 }, + { code: "3203106", start: 29_550_000, end: 29_559_999 }, + { code: "3202306", start: 29_560_000, end: 29_579_999 }, + { code: "3202009", start: 29_580_000, end: 29_589_999 }, + { code: "3201803", start: 29_590_000, end: 29_599_999 }, + { code: "3200102", start: 29_600_000, end: 29_614_999 }, + { code: "3203163", start: 29_615_000, end: 29_619_999 }, + { code: "3202900", start: 29_620_000, end: 29_629_999 }, + { code: "3201159", start: 29_630_000, end: 29_639_999 }, + { code: "3204500", start: 29_640_000, end: 29_644_999 }, + { code: "3204559", start: 29_645_000, end: 29_649_999 }, + { code: "3204609", start: 29_650_000, end: 29_664_999 }, + { code: "3204955", start: 29_665_000, end: 29_669_999 }, + { code: "3202504", start: 29_670_000, end: 29_679_999 }, + { code: "3203130", start: 29_680_000, end: 29_689_999 }, + { code: "3202702", start: 29_690_000, end: 29_699_999 }, + { code: "3201506", start: 29_700_001, end: 29_719_999 }, + { code: "3202256", start: 29_720_000, end: 29_724_999 }, + { code: "3203353", start: 29_725_000, end: 29_729_999 }, + { code: "3200805", start: 29_730_000, end: 29_744_999 }, + { code: "3204658", start: 29_745_000, end: 29_749_999 }, + { code: "3204005", start: 29_750_000, end: 29_759_999 }, + { code: "3200359", start: 29_760_000, end: 29_769_999 }, + { code: "3203304", start: 29_770_000, end: 29_779_999 }, + { code: "3204708", start: 29_780_000, end: 29_784_999 }, + { code: "3205176", start: 29_785_000, end: 29_794_999 }, + { code: "3200136", start: 29_795_000, end: 29_799_999 }, + { code: "3200904", start: 29_800_000, end: 29_819_999 }, + { code: "3200169", start: 29_820_000, end: 29_829_999 }, + { code: "3203908", start: 29_830_000, end: 29_842_999 }, + { code: "3205150", start: 29_843_000, end: 29_844_999 }, + { code: "3201001", start: 29_845_000, end: 29_849_999 }, + { code: "3202108", start: 29_850_000, end: 29_879_999 }, + { code: "3203601", start: 29_880_000, end: 29_884_999 }, + { code: "3204252", start: 29_885_000, end: 29_889_999 }, + { code: "3203502", start: 29_890_000, end: 29_899_999 }, + { code: "3203205", start: 29_900_001, end: 29_919_999 }, + { code: "3204351", start: 29_920_000, end: 29_926_999 }, + { code: "3205010", start: 29_927_000, end: 29_929_999 }, + { code: "3204906", start: 29_930_001, end: 29_949_999 }, + { code: "3203056", start: 29_950_000, end: 29_959_999 }, + { code: "3201605", start: 29_960_000, end: 29_969_999 }, + { code: "3204054", start: 29_970_000, end: 29_979_999 }, + { code: "3204104", start: 29_980_000, end: 29_999_999 }, + { code: "3106200", start: 30_000_001, end: 31_999_999 }, + { code: "3118601", start: 32_000_001, end: 32_399_999 }, + { code: "3129806", start: 32_400_001, end: 32_449_999 }, + { code: "3165537", start: 32_450_000, end: 32_469_999 }, + { code: "3140159", start: 32_470_000, end: 32_499_999 }, + { code: "3106705", start: 32_600_001, end: 32_699_999 }, + { code: "3130101", start: 32_900_000, end: 32_919_999 }, + { code: "3162922", start: 32_920_000, end: 32_999_999 }, + { code: "3157807", start: 33_000_001, end: 33_199_999 }, + { code: "3171204", start: 33_200_000, end: 33_349_999 }, + { code: "3162955", start: 33_350_000, end: 33_399_999 }, + { code: "3137601", start: 33_400_000, end: 33_499_999 }, + { code: "3117876", start: 33_500_000, end: 33_599_999 }, + { code: "3149309", start: 33_600_000, end: 33_799_999 }, + { code: "3154606", start: 33_800_001, end: 33_979_999 }, + { code: "3168309", start: 33_980_000, end: 33_999_999 }, + { code: "3144805", start: 34_000_001, end: 34_019_999 }, + { code: "3154804", start: 34_300_000, end: 34_399_999 }, + { code: "3153905", start: 34_400_000, end: 34_499_999 }, + { code: "3156700", start: 34_500_001, end: 34_799_999 }, + { code: "3110004", start: 34_800_000, end: 34_989_999 }, + { code: "3136603", start: 34_990_000, end: 34_999_999 }, + { code: "3127701", start: 35_000_001, end: 35_109_999 }, + { code: "3171501", start: 35_110_000, end: 35_111_999 }, + { code: "3126901", start: 35_112_000, end: 35_112_999 }, + { code: "3144904", start: 35_113_000, end: 35_113_999 }, + { code: "3150000", start: 35_114_000, end: 35_114_999 }, + { code: "3140100", start: 35_115_000, end: 35_115_999 }, + { code: "3141702", start: 35_116_000, end: 35_116_999 }, + { code: "3144359", start: 35_117_000, end: 35_117_999 }, + { code: "3149952", start: 35_118_000, end: 35_119_999 }, + { code: "3133204", start: 35_120_000, end: 35_122_999 }, + { code: "3112653", start: 35_123_000, end: 35_124_999 }, + { code: "3169505", start: 35_125_000, end: 35_129_999 }, + { code: "3123700", start: 35_130_000, end: 35_134_999 }, + { code: "3125804", start: 35_135_000, end: 35_137_999 }, + { code: "3101805", start: 35_138_000, end: 35_139_999 }, + { code: "3168408", start: 35_140_000, end: 35_143_999 }, + { code: "3167707", start: 35_144_000, end: 35_145_999 }, + { code: "3162609", start: 35_146_000, end: 35_146_999 }, + { code: "3100500", start: 35_147_000, end: 35_147_999 }, + { code: "3122504", start: 35_148_000, end: 35_149_999 }, + { code: "3131307", start: 35_150_001, end: 35_169_999 }, + { code: "3119401", start: 35_170_001, end: 35_176_999 }, + { code: "3103009", start: 35_177_000, end: 35_178_999 }, + { code: "3158953", start: 35_179_000, end: 35_179_999 }, + { code: "3168705", start: 35_180_001, end: 35_184_999 }, + { code: "3140308", start: 35_185_000, end: 35_187_999 }, + { code: "3135001", start: 35_188_000, end: 35_188_999 }, + { code: "3108800", start: 35_189_000, end: 35_189_999 }, + { code: "3129301", start: 35_190_000, end: 35_192_999 }, + { code: "3109253", start: 35_193_000, end: 35_193_999 }, + { code: "3136108", start: 35_194_000, end: 35_194_999 }, + { code: "3106309", start: 35_195_000, end: 35_197_999 }, + { code: "3131158", start: 35_198_000, end: 35_198_999 }, + { code: "3170578", start: 35_199_000, end: 35_199_999 }, + { code: "3101102", start: 35_200_000, end: 35_219_999 }, + { code: "3134103", start: 35_220_000, end: 35_224_999 }, + { code: "3159506", start: 35_225_000, end: 35_229_999 }, + { code: "3154309", start: 35_230_000, end: 35_239_999 }, + { code: "3118403", start: 35_240_000, end: 35_245_999 }, + { code: "3120839", start: 35_246_000, end: 35_247_999 }, + { code: "3127370", start: 35_248_000, end: 35_248_999 }, + { code: "3102209", start: 35_249_000, end: 35_249_999 }, + { code: "3127305", start: 35_250_000, end: 35_257_999 }, + { code: "3161650", start: 35_258_000, end: 35_259_999 }, + { code: "3115706", start: 35_260_000, end: 35_264_999 }, + { code: "3122108", start: 35_265_000, end: 35_269_999 }, + { code: "3141504", start: 35_270_000, end: 35_274_999 }, + { code: "3161056", start: 35_275_000, end: 35_276_999 }, + { code: "3162575", start: 35_277_000, end: 35_279_999 }, + { code: "3131802", start: 35_280_000, end: 35_289_999 }, + { code: "3139607", start: 35_290_000, end: 35_297_999 }, + { code: "3144672", start: 35_298_000, end: 35_299_999 }, + { code: "3113404", start: 35_300_001, end: 35_322_999 }, + { code: "3130556", start: 35_323_000, end: 35_323_999 }, + { code: "3123858", start: 35_324_000, end: 35_324_999 }, + { code: "3150158", start: 35_325_000, end: 35_325_999 }, + { code: "3159357", start: 35_326_000, end: 35_327_999 }, + { code: "3157252", start: 35_328_000, end: 35_329_999 }, + { code: "3130903", start: 35_330_000, end: 35_333_999 }, + { code: "3164472", start: 35_334_000, end: 35_334_999 }, + { code: "3160959", start: 35_335_000, end: 35_337_999 }, + { code: "3170057", start: 35_338_000, end: 35_339_999 }, + { code: "3107802", start: 35_340_000, end: 35_344_999 }, + { code: "3120003", start: 35_345_000, end: 35_347_999 }, + { code: "3150539", start: 35_348_000, end: 35_349_999 }, + { code: "3154002", start: 35_350_000, end: 35_358_999 }, + { code: "3171154", start: 35_359_000, end: 35_359_999 }, + { code: "3164001", start: 35_360_000, end: 35_363_999 }, + { code: "3148756", start: 35_364_000, end: 35_364_999 }, + { code: "3100302", start: 35_365_000, end: 35_366_999 }, + { code: "3140902", start: 35_367_000, end: 35_367_999 }, + { code: "3166303", start: 35_368_000, end: 35_369_999 }, + { code: "3154903", start: 35_370_000, end: 35_379_999 }, + { code: "3170503", start: 35_380_000, end: 35_381_999 }, + { code: "3150208", start: 35_382_000, end: 35_382_999 }, + { code: "3157401", start: 35_383_000, end: 35_387_999 }, + { code: "3160108", start: 35_388_000, end: 35_389_999 }, + { code: "3135506", start: 35_390_000, end: 35_399_999 }, + { code: "3146107", start: 35_400_000, end: 35_419_999 }, + { code: "3140001", start: 35_420_000, end: 35_429_999 }, + { code: "3152105", start: 35_430_001, end: 35_435_999 }, + { code: "3128204", start: 35_436_000, end: 35_436_999 }, + { code: "3121704", start: 35_437_000, end: 35_437_999 }, + { code: "3100401", start: 35_438_000, end: 35_438_999 }, + { code: "3145851", start: 35_439_000, end: 35_439_999 }, + { code: "3122702", start: 35_440_000, end: 35_440_999 }, + { code: "3165560", start: 35_441_000, end: 35_441_999 }, + { code: "3155009", start: 35_442_000, end: 35_443_999 }, + { code: "3102506", start: 35_444_000, end: 35_446_999 }, + { code: "3105707", start: 35_447_000, end: 35_449_999 }, + { code: "3131901", start: 35_450_000, end: 35_459_999 }, + { code: "3109006", start: 35_460_000, end: 35_469_999 }, + { code: "3142304", start: 35_470_000, end: 35_472_999 }, + { code: "3106408", start: 35_473_000, end: 35_475_999 }, + { code: "3150406", start: 35_476_000, end: 35_477_999 }, + { code: "3120607", start: 35_478_000, end: 35_479_999 }, + { code: "3108107", start: 35_480_000, end: 35_484_999 }, + { code: "3155306", start: 35_485_000, end: 35_487_999 }, + { code: "3132206", start: 35_488_000, end: 35_489_999 }, + { code: "3123908", start: 35_490_000, end: 35_491_999 }, + { code: "3121407", start: 35_492_000, end: 35_494_999 }, + { code: "3160900", start: 35_495_000, end: 35_496_999 }, + { code: "3135407", start: 35_497_000, end: 35_499_999 }, + { code: "3122306", start: 35_500_001, end: 35_516_999 }, + { code: "3145208", start: 35_517_000, end: 35_529_999 }, + { code: "3116605", start: 35_530_000, end: 35_533_999 }, + { code: "3114501", start: 35_534_000, end: 35_535_999 }, + { code: "3150604", start: 35_536_000, end: 35_536_999 }, + { code: "3147709", start: 35_537_000, end: 35_539_999 }, + { code: "3145604", start: 35_540_000, end: 35_542_999 }, + { code: "3161205", start: 35_543_000, end: 35_543_999 }, + { code: "3161809", start: 35_544_000, end: 35_544_999 }, + { code: "3149705", start: 35_545_000, end: 35_546_999 }, + { code: "3114006", start: 35_547_000, end: 35_549_999 }, + { code: "3133501", start: 35_550_000, end: 35_554_999 }, + { code: "3110400", start: 35_555_000, end: 35_556_999 }, + { code: "3114204", start: 35_557_000, end: 35_559_999 }, + { code: "3160405", start: 35_560_000, end: 35_564_999 }, + { code: "3148905", start: 35_565_000, end: 35_566_999 }, + { code: "3164605", start: 35_567_000, end: 35_569_999 }, + { code: "3126109", start: 35_570_000, end: 35_577_999 }, + { code: "3119955", start: 35_578_000, end: 35_579_999 }, + { code: "3135308", start: 35_580_000, end: 35_581_999 }, + { code: "3146503", start: 35_582_000, end: 35_584_999 }, + { code: "3150505", start: 35_585_000, end: 35_587_999 }, + { code: "3104205", start: 35_588_000, end: 35_589_999 }, + { code: "3137205", start: 35_590_000, end: 35_594_999 }, + { code: "3138807", start: 35_595_000, end: 35_599_999 }, + { code: "3107406", start: 35_600_000, end: 35_602_999 }, + { code: "3103900", start: 35_603_000, end: 35_603_999 }, + { code: "3142403", start: 35_604_000, end: 35_605_999 }, + { code: "3140506", start: 35_606_000, end: 35_609_999 }, + { code: "3123205", start: 35_610_000, end: 35_612_999 }, + { code: "3124708", start: 35_613_000, end: 35_616_999 }, + { code: "3166600", start: 35_617_000, end: 35_619_999 }, + { code: "3100203", start: 35_620_000, end: 35_620_999 }, + { code: "3107000", start: 35_621_000, end: 35_621_999 }, + { code: "3146404", start: 35_622_000, end: 35_623_999 }, + { code: "3115607", start: 35_624_000, end: 35_624_999 }, + { code: "3153707", start: 35_625_000, end: 35_627_999 }, + { code: "3143500", start: 35_628_000, end: 35_639_999 }, + { code: "3152006", start: 35_640_000, end: 35_649_999 }, + { code: "3151404", start: 35_650_000, end: 35_654_999 }, + { code: "3145802", start: 35_655_000, end: 35_656_999 }, + { code: "3138302", start: 35_657_000, end: 35_659_999 }, + { code: "3147105", start: 35_660_001, end: 35_665_999 }, + { code: "3139706", start: 35_666_000, end: 35_666_999 }, + { code: "3149606", start: 35_667_000, end: 35_667_999 }, + { code: "3117603", start: 35_668_000, end: 35_668_999 }, + { code: "3146909", start: 35_669_000, end: 35_669_999 }, + { code: "3140704", start: 35_670_000, end: 35_674_999 }, + { code: "3136652", start: 35_675_000, end: 35_679_999 }, + { code: "3133808", start: 35_680_001, end: 35_684_999 }, + { code: "3133709", start: 35_685_000, end: 35_689_999 }, + { code: "3126000", start: 35_690_000, end: 35_693_999 }, + { code: "3163102", start: 35_694_000, end: 35_694_999 }, + { code: "3130200", start: 35_695_000, end: 35_699_999 }, + { code: "3167202", start: 35_700_001, end: 35_719_999 }, + { code: "3141108", start: 35_720_000, end: 35_729_999 }, + { code: "3112505", start: 35_730_000, end: 35_731_999 }, + { code: "3105004", start: 35_732_000, end: 35_735_999 }, + { code: "3127206", start: 35_736_000, end: 35_737_999 }, + { code: "3153608", start: 35_738_000, end: 35_739_999 }, + { code: "3124104", start: 35_740_000, end: 35_759_999 }, + { code: "3126406", start: 35_760_000, end: 35_762_999 }, + { code: "3131000", start: 35_763_000, end: 35_764_999 }, + { code: "3109600", start: 35_765_000, end: 35_766_999 }, + { code: "3135704", start: 35_767_000, end: 35_769_999 }, + { code: "3109907", start: 35_770_000, end: 35_773_999 }, + { code: "3147402", start: 35_774_000, end: 35_776_999 }, + { code: "3103207", start: 35_777_000, end: 35_779_999 }, + { code: "3118908", start: 35_780_000, end: 35_784_999 }, + { code: "3158508", start: 35_785_000, end: 35_788_999 }, + { code: "3120904", start: 35_789_000, end: 35_799_999 }, + { code: "3125903", start: 35_800_000, end: 35_809_999 }, + { code: "3147501", start: 35_810_000, end: 35_814_999 }, + { code: "3164803", start: 35_815_000, end: 35_819_999 }, + { code: "3132800", start: 35_820_000, end: 35_829_999 }, + { code: "3134608", start: 35_830_000, end: 35_844_999 }, + { code: "3159001", start: 35_845_000, end: 35_849_999 }, + { code: "3118106", start: 35_850_000, end: 35_857_999 }, + { code: "3117504", start: 35_858_000, end: 35_864_999 }, + { code: "3122603", start: 35_865_000, end: 35_874_999 }, + { code: "3143708", start: 35_875_000, end: 35_877_999 }, + { code: "3113800", start: 35_878_000, end: 35_879_999 }, + { code: "3160504", start: 35_880_000, end: 35_893_999 }, + { code: "3123106", start: 35_894_000, end: 35_899_999 }, + { code: "3131703", start: 35_900_001, end: 35_907_999 }, + { code: "3107703", start: 35_908_000, end: 35_909_999 }, + { code: "3158003", start: 35_910_000, end: 35_919_999 }, + { code: "3144706", start: 35_920_000, end: 35_929_999 }, + { code: "3136207", start: 35_930_001, end: 35_934_999 }, + { code: "3161908", start: 35_935_000, end: 35_937_999 }, + { code: "3106002", start: 35_938_000, end: 35_939_999 }, + { code: "3155702", start: 35_940_000, end: 35_949_999 }, + { code: "3102308", start: 35_950_000, end: 35_959_999 }, + { code: "3157203", start: 35_960_000, end: 35_968_999 }, + { code: "3115359", start: 35_969_000, end: 35_969_999 }, + { code: "3105400", start: 35_970_000, end: 35_983_999 }, + { code: "3121803", start: 35_984_000, end: 35_985_999 }, + { code: "3163409", start: 35_986_000, end: 35_992_999 }, + { code: "3161007", start: 35_993_000, end: 35_999_999 }, + { code: "3136702", start: 36_000_001, end: 36_107_999 }, + { code: "3125002", start: 36_108_000, end: 36_109_999 }, + { code: "3115904", start: 36_110_000, end: 36_119_999 }, + { code: "3140803", start: 36_120_000, end: 36_122_999 }, + { code: "3167509", start: 36_123_000, end: 36_125_999 }, + { code: "3106101", start: 36_126_000, end: 36_129_999 }, + { code: "3155900", start: 36_130_000, end: 36_131_999 }, + { code: "3157278", start: 36_132_000, end: 36_134_999 }, + { code: "3159308", start: 36_135_000, end: 36_139_999 }, + { code: "3138609", start: 36_140_000, end: 36_144_999 }, + { code: "3145406", start: 36_145_000, end: 36_145_999 }, + { code: "3158706", start: 36_146_000, end: 36_147_999 }, + { code: "3149408", start: 36_148_000, end: 36_149_999 }, + { code: "3155405", start: 36_150_000, end: 36_151_999 }, + { code: "3127388", start: 36_152_000, end: 36_154_999 }, + { code: "3119609", start: 36_155_000, end: 36_156_999 }, + { code: "3150109", start: 36_157_000, end: 36_159_999 }, + { code: "3128402", start: 36_160_000, end: 36_164_999 }, + { code: "3167905", start: 36_165_000, end: 36_169_999 }, + { code: "3151305", start: 36_170_000, end: 36_179_999 }, + { code: "3155801", start: 36_180_000, end: 36_184_999 }, + { code: "3167301", start: 36_185_000, end: 36_189_999 }, + { code: "3141603", start: 36_190_000, end: 36_194_999 }, + { code: "3146602", start: 36_195_000, end: 36_199_999 }, + { code: "3105608", start: 36_200_001, end: 36_209_999 }, + { code: "3121506", start: 36_210_000, end: 36_211_999 }, + { code: "3105905", start: 36_212_000, end: 36_212_999 }, + { code: "3123007", start: 36_213_000, end: 36_214_999 }, + { code: "3157302", start: 36_215_000, end: 36_219_999 }, + { code: "3102902", start: 36_220_000, end: 36_224_999 }, + { code: "3129400", start: 36_225_000, end: 36_226_999 }, + { code: "3150307", start: 36_227_000, end: 36_229_999 }, + { code: "3106804", start: 36_230_000, end: 36_234_999 }, + { code: "3159407", start: 36_235_000, end: 36_239_999 }, + { code: "3160702", start: 36_240_000, end: 36_249_999 }, + { code: "3145703", start: 36_250_000, end: 36_254_999 }, + { code: "3103306", start: 36_255_000, end: 36_259_999 }, + { code: "3102100", start: 36_260_000, end: 36_264_999 }, + { code: "3116308", start: 36_265_000, end: 36_269_999 }, + { code: "3154408", start: 36_270_000, end: 36_271_999 }, + { code: "3101631", start: 36_272_000, end: 36_274_999 }, + { code: "3166204", start: 36_275_000, end: 36_279_999 }, + { code: "3113206", start: 36_280_000, end: 36_289_999 }, + { code: "3112208", start: 36_290_000, end: 36_299_999 }, + { code: "3162500", start: 36_300_001, end: 36_319_999 }, + { code: "3152709", start: 36_320_000, end: 36_324_999 }, + { code: "3168804", start: 36_325_000, end: 36_327_999 }, + { code: "3157336", start: 36_328_000, end: 36_329_999 }, + { code: "3119708", start: 36_330_000, end: 36_334_999 }, + { code: "3156106", start: 36_335_000, end: 36_339_999 }, + { code: "3154200", start: 36_340_000, end: 36_344_999 }, + { code: "3137403", start: 36_345_000, end: 36_349_999 }, + { code: "3165008", start: 36_350_000, end: 36_359_999 }, + { code: "3115201", start: 36_360_000, end: 36_369_999 }, + { code: "3144508", start: 36_370_000, end: 36_389_999 }, + { code: "3134509", start: 36_390_000, end: 36_399_999 }, + { code: "3118304", start: 36_400_000, end: 36_414_999 }, + { code: "3118007", start: 36_415_000, end: 36_419_999 }, + { code: "3145901", start: 36_420_000, end: 36_421_999 }, + { code: "3114907", start: 36_422_000, end: 36_423_999 }, + { code: "3153806", start: 36_424_000, end: 36_425_999 }, + { code: "3120409", start: 36_426_000, end: 36_427_999 }, + { code: "3113107", start: 36_428_000, end: 36_429_999 }, + { code: "3159100", start: 36_430_000, end: 36_439_999 }, + { code: "3133907", start: 36_440_000, end: 36_449_999 }, + { code: "3115409", start: 36_450_000, end: 36_454_999 }, + { code: "3137908", start: 36_455_000, end: 36_459_999 }, + { code: "3155207", start: 36_460_000, end: 36_469_999 }, + { code: "3166006", start: 36_470_000, end: 36_474_999 }, + { code: "3153103", start: 36_475_000, end: 36_479_999 }, + { code: "3150802", start: 36_480_000, end: 36_499_999 }, + { code: "3169901", start: 36_500_000, end: 36_509_999 }, + { code: "3156304", start: 36_510_000, end: 36_511_999 }, + { code: "3169000", start: 36_512_000, end: 36_512_999 }, + { code: "3123304", start: 36_513_000, end: 36_514_999 }, + { code: "3128808", start: 36_515_000, end: 36_519_999 }, + { code: "3172004", start: 36_520_000, end: 36_524_999 }, + { code: "3129004", start: 36_525_000, end: 36_529_999 }, + { code: "3161502", start: 36_530_000, end: 36_539_999 }, + { code: "3165701", start: 36_540_000, end: 36_541_999 }, + { code: "3108701", start: 36_542_000, end: 36_543_999 }, + { code: "3148301", start: 36_544_000, end: 36_545_999 }, + { code: "3121902", start: 36_546_000, end: 36_549_999 }, + { code: "3116704", start: 36_550_000, end: 36_554_999 }, + { code: "3124005", start: 36_555_000, end: 36_559_999 }, + { code: "3110202", start: 36_560_000, end: 36_569_999 }, + { code: "3171303", start: 36_570_000, end: 36_575_999 }, + { code: "3152303", start: 36_576_000, end: 36_579_999 }, + { code: "3168507", start: 36_580_000, end: 36_584_999 }, + { code: "3148806", start: 36_585_000, end: 36_589_999 }, + { code: "3163805", start: 36_590_000, end: 36_591_999 }, + { code: "3111705", start: 36_592_000, end: 36_593_999 }, + { code: "3103702", start: 36_594_000, end: 36_599_999 }, + { code: "3106903", start: 36_600_000, end: 36_603_999 }, + { code: "3156205", start: 36_604_000, end: 36_605_999 }, + { code: "3128501", start: 36_606_000, end: 36_607_999 }, + { code: "3140209", start: 36_608_000, end: 36_609_999 }, + { code: "3149507", start: 36_610_000, end: 36_619_999 }, + { code: "3158607", start: 36_620_000, end: 36_629_999 }, + { code: "3116209", start: 36_630_000, end: 36_639_999 }, + { code: "3139805", start: 36_640_000, end: 36_649_999 }, + { code: "3165602", start: 36_650_000, end: 36_659_999 }, + { code: "3101508", start: 36_660_000, end: 36_669_999 }, + { code: "3160009", start: 36_670_000, end: 36_679_999 }, + { code: "3162906", start: 36_680_000, end: 36_689_999 }, + { code: "3121308", start: 36_690_000, end: 36_699_999 }, + { code: "3138401", start: 36_700_000, end: 36_709_999 }, + { code: "3104403", start: 36_710_000, end: 36_719_999 }, + { code: "3172103", start: 36_720_000, end: 36_724_999 }, + { code: "3124609", start: 36_725_000, end: 36_729_999 }, + { code: "3151107", start: 36_730_000, end: 36_739_999 }, + { code: "3154101", start: 36_740_000, end: 36_749_999 }, + { code: "3146701", start: 36_750_000, end: 36_759_999 }, + { code: "3138005", start: 36_760_000, end: 36_769_999 }, + { code: "3115300", start: 36_770_001, end: 36_779_999 }, + { code: "3104601", start: 36_780_000, end: 36_783_999 }, + { code: "3122900", start: 36_784_000, end: 36_787_999 }, + { code: "3132602", start: 36_788_000, end: 36_789_999 }, + { code: "3142205", start: 36_790_000, end: 36_792_999 }, + { code: "3164431", start: 36_793_000, end: 36_794_999 }, + { code: "3158409", start: 36_795_000, end: 36_799_999 }, + { code: "3113305", start: 36_800_000, end: 36_809_999 }, + { code: "3161403", start: 36_810_000, end: 36_814_999 }, + { code: "3125952", start: 36_815_000, end: 36_819_999 }, + { code: "3122009", start: 36_820_000, end: 36_827_999 }, + { code: "3145877", start: 36_828_000, end: 36_829_999 }, + { code: "3124203", start: 36_830_000, end: 36_831_999 }, + { code: "3110103", start: 36_832_000, end: 36_833_999 }, + { code: "3112109", start: 36_834_000, end: 36_835_999 }, + { code: "3125309", start: 36_840_000, end: 36_843_999 }, + { code: "3169208", start: 36_844_000, end: 36_846_999 }, + { code: "3149002", start: 36_847_000, end: 36_849_999 }, + { code: "3103108", start: 36_850_000, end: 36_854_999 }, + { code: "3124906", start: 36_855_000, end: 36_859_999 }, + { code: "3148202", start: 36_860_000, end: 36_869_999 }, + { code: "3105509", start: 36_870_000, end: 36_877_999 }, + { code: "3156452", start: 36_878_000, end: 36_879_999 }, + { code: "3143906", start: 36_880_001, end: 36_892_999 }, + { code: "3142106", start: 36_893_000, end: 36_894_999 }, + { code: "3171402", start: 36_895_000, end: 36_899_999 }, + { code: "3139409", start: 36_900_000, end: 36_912_999 }, + { code: "3157906", start: 36_913_000, end: 36_917_999 }, + { code: "3162559", start: 36_918_000, end: 36_919_999 }, + { code: "3154150", start: 36_920_000, end: 36_922_999 }, + { code: "3138674", start: 36_923_000, end: 36_924_999 }, + { code: "3112901", start: 36_925_000, end: 36_929_999 }, + { code: "3167608", start: 36_930_000, end: 36_939_999 }, + { code: "3158904", start: 36_940_000, end: 36_946_999 }, + { code: "3117405", start: 36_947_000, end: 36_949_999 }, + { code: "3131208", start: 36_950_000, end: 36_952_999 }, + { code: "3168051", start: 36_953_000, end: 36_954_999 }, + { code: "3144003", start: 36_955_000, end: 36_959_999 }, + { code: "3151909", start: 36_960_000, end: 36_969_999 }, + { code: "3139508", start: 36_970_000, end: 36_971_999 }, + { code: "3140530", start: 36_972_000, end: 36_973_999 }, + { code: "3123528", start: 36_974_000, end: 36_975_999 }, + { code: "3153509", start: 36_976_000, end: 36_978_999 }, + { code: "3102050", start: 36_979_000, end: 36_979_999 }, + { code: "3137700", start: 36_980_000, end: 36_984_999 }, + { code: "3116001", start: 36_985_000, end: 36_989_999 }, + { code: "3163607", start: 36_990_000, end: 36_999_999 }, + { code: "3170701", start: 37_000_001, end: 37_109_999 }, + { code: "3123601", start: 37_110_000, end: 37_114_999 }, + { code: "3143005", start: 37_115_000, end: 37_119_999 }, + { code: "3147204", start: 37_120_000, end: 37_129_999 }, + { code: "3101607", start: 37_130_001, end: 37_139_999 }, + { code: "3104304", start: 37_140_000, end: 37_141_999 }, + { code: "3122405", start: 37_142_000, end: 37_142_999 }, + { code: "3166907", start: 37_143_000, end: 37_143_999 }, + { code: "3125200", start: 37_144_000, end: 37_144_999 }, + { code: "3102001", start: 37_145_000, end: 37_147_999 }, + { code: "3117108", start: 37_148_000, end: 37_149_999 }, + { code: "3114402", start: 37_150_000, end: 37_159_999 }, + { code: "3111606", start: 37_160_000, end: 37_164_999 }, + { code: "3111309", start: 37_165_000, end: 37_169_999 }, + { code: "3107109", start: 37_170_000, end: 37_174_999 }, + { code: "3130507", start: 37_175_000, end: 37_176_999 }, + { code: "3128105", start: 37_177_000, end: 37_189_999 }, + { code: "3169406", start: 37_190_000, end: 37_194_999 }, + { code: "3158300", start: 37_195_000, end: 37_199_999 }, + { code: "3138203", start: 37_200_000, end: 37_209_999 }, + { code: "3134301", start: 37_210_000, end: 37_214_999 }, + { code: "3130804", start: 37_215_000, end: 37_217_999 }, + { code: "3130408", start: 37_218_000, end: 37_219_999 }, + { code: "3108008", start: 37_220_000, end: 37_222_999 }, + { code: "3130002", start: 37_223_000, end: 37_224_999 }, + { code: "3113909", start: 37_225_000, end: 37_234_999 }, + { code: "3118700", start: 37_235_000, end: 37_239_999 }, + { code: "3138708", start: 37_240_000, end: 37_244_999 }, + { code: "3114600", start: 37_245_000, end: 37_249_999 }, + { code: "3144607", start: 37_250_000, end: 37_259_999 }, + { code: "3149903", start: 37_260_000, end: 37_261_999 }, + { code: "3159902", start: 37_262_000, end: 37_263_999 }, + { code: "3154705", start: 37_264_000, end: 37_266_999 }, + { code: "3111903", start: 37_267_000, end: 37_269_999 }, + { code: "3111200", start: 37_270_000, end: 37_272_999 }, + { code: "3100807", start: 37_273_000, end: 37_274_999 }, + { code: "3120201", start: 37_275_000, end: 37_277_999 }, + { code: "3158805", start: 37_278_000, end: 37_279_999 }, + { code: "3112000", start: 37_280_000, end: 37_299_999 }, + { code: "3102803", start: 37_300_000, end: 37_304_999 }, + { code: "3139102", start: 37_305_000, end: 37_309_999 }, + { code: "3107505", start: 37_310_000, end: 37_329_999 }, + { code: "3147808", start: 37_330_000, end: 37_339_999 }, + { code: "3107208", start: 37_340_000, end: 37_349_999 }, + { code: "3138500", start: 37_350_000, end: 37_359_999 }, + { code: "3103603", start: 37_360_000, end: 37_369_999 }, + { code: "3165305", start: 37_370_000, end: 37_399_999 }, + { code: "3110905", start: 37_400_000, end: 37_404_999 }, + { code: "3142601", start: 37_405_000, end: 37_406_999 }, + { code: "3160801", start: 37_407_000, end: 37_407_999 }, + { code: "3165206", start: 37_408_000, end: 37_409_999 }, + { code: "3169307", start: 37_410_000, end: 37_419_999 }, + { code: "3110707", start: 37_420_000, end: 37_429_999 }, + { code: "3117702", start: 37_430_000, end: 37_439_999 }, + { code: "3115508", start: 37_440_000, end: 37_442_999 }, + { code: "3104908", start: 37_443_000, end: 37_444_999 }, + { code: "3120805", start: 37_445_000, end: 37_446_999 }, + { code: "3141900", start: 37_447_000, end: 37_449_999 }, + { code: "3101201", start: 37_450_000, end: 37_451_999 }, + { code: "3167004", start: 37_452_000, end: 37_453_999 }, + { code: "3166402", start: 37_454_000, end: 37_455_999 }, + { code: "3114808", start: 37_456_000, end: 37_457_999 }, + { code: "3101300", start: 37_458_000, end: 37_459_999 }, + { code: "3147600", start: 37_460_000, end: 37_463_999 }, + { code: "3133105", start: 37_464_000, end: 37_464_999 }, + { code: "3171709", start: 37_465_000, end: 37_465_999 }, + { code: "3133006", start: 37_466_000, end: 37_466_999 }, + { code: "3164902", start: 37_467_000, end: 37_467_999 }, + { code: "3152600", start: 37_468_000, end: 37_469_999 }, + { code: "3163706", start: 37_470_000, end: 37_471_999 }, + { code: "3114105", start: 37_472_000, end: 37_473_999 }, + { code: "3122801", start: 37_474_000, end: 37_475_999 }, + { code: "3120508", start: 37_476_000, end: 37_477_999 }, + { code: "3167806", start: 37_478_000, end: 37_479_999 }, + { code: "3137809", start: 37_480_000, end: 37_483_999 }, + { code: "3129202", start: 37_484_000, end: 37_484_999 }, + { code: "3135902", start: 37_485_000, end: 37_487_999 }, + { code: "3145505", start: 37_488_000, end: 37_489_999 }, + { code: "3162005", start: 37_490_000, end: 37_495_999 }, + { code: "3169802", start: 37_496_000, end: 37_497_999 }, + { code: "3119005", start: 37_498_000, end: 37_499_999 }, + { code: "3132404", start: 37_500_001, end: 37_507_999 }, + { code: "3151008", start: 37_508_000, end: 37_509_999 }, + { code: "3163201", start: 37_510_000, end: 37_510_999 }, + { code: "3150901", start: 37_511_000, end: 37_511_999 }, + { code: "3172202", start: 37_512_000, end: 37_513_999 }, + { code: "3121100", start: 37_514_000, end: 37_515_999 }, + { code: "3140407", start: 37_516_000, end: 37_516_999 }, + { code: "3139904", start: 37_517_000, end: 37_519_999 }, + { code: "3149101", start: 37_520_000, end: 37_523_999 }, + { code: "3144409", start: 37_524_000, end: 37_526_999 }, + { code: "3117207", start: 37_527_000, end: 37_529_999 }, + { code: "3108909", start: 37_530_000, end: 37_539_999 }, + { code: "3159605", start: 37_540_000, end: 37_541_999 }, + { code: "3124500", start: 37_542_000, end: 37_544_999 }, + { code: "3109709", start: 37_545_000, end: 37_547_999 }, + { code: "3117801", start: 37_548_000, end: 37_548_999 }, + { code: "3152501", start: 37_550_001, end: 37_562_999 }, + { code: "3169059", start: 37_563_000, end: 37_563_999 }, + { code: "3108305", start: 37_564_000, end: 37_565_999 }, + { code: "3124401", start: 37_566_000, end: 37_566_999 }, + { code: "3164407", start: 37_567_000, end: 37_567_999 }, + { code: "3162302", start: 37_568_000, end: 37_569_999 }, + { code: "3146008", start: 37_570_000, end: 37_575_999 }, + { code: "3130606", start: 37_576_000, end: 37_577_999 }, + { code: "3109105", start: 37_578_000, end: 37_579_999 }, + { code: "3143401", start: 37_580_000, end: 37_581_999 }, + { code: "3113602", start: 37_582_000, end: 37_583_999 }, + { code: "3117900", start: 37_584_000, end: 37_585_999 }, + { code: "3165800", start: 37_586_000, end: 37_587_999 }, + { code: "3131505", start: 37_588_000, end: 37_588_999 }, + { code: "3167400", start: 37_589_000, end: 37_589_999 }, + { code: "3134905", start: 37_590_000, end: 37_595_999 }, + { code: "3101409", start: 37_596_000, end: 37_599_999 }, + { code: "3110608", start: 37_600_000, end: 37_604_999 }, + { code: "3119906", start: 37_605_000, end: 37_609_999 }, + { code: "3107901", start: 37_610_000, end: 37_614_999 }, + { code: "3165578", start: 37_615_000, end: 37_619_999 }, + { code: "3143807", start: 37_620_000, end: 37_629_999 }, + { code: "3169109", start: 37_630_000, end: 37_639_999 }, + { code: "3125101", start: 37_640_000, end: 37_649_999 }, + { code: "3110509", start: 37_650_000, end: 37_654_999 }, + { code: "3133600", start: 37_655_000, end: 37_659_999 }, + { code: "3147303", start: 37_660_000, end: 37_669_999 }, + { code: "3118502", start: 37_670_000, end: 37_679_999 }, + { code: "3127404", start: 37_680_000, end: 37_689_999 }, + { code: "3165404", start: 37_690_000, end: 37_699_999 }, + { code: "3151800", start: 37_700_001, end: 37_719_999 }, + { code: "3108404", start: 37_720_000, end: 37_729_999 }, + { code: "3111002", start: 37_730_000, end: 37_739_999 }, + { code: "3105301", start: 37_740_000, end: 37_749_999 }, + { code: "3139003", start: 37_750_000, end: 37_756_999 }, + { code: "3151701", start: 37_757_000, end: 37_759_999 }, + { code: "3114709", start: 37_760_000, end: 37_774_999 }, + { code: "3159209", start: 37_775_000, end: 37_779_999 }, + { code: "3110301", start: 37_780_000, end: 37_789_999 }, + { code: "3129905", start: 37_790_000, end: 37_794_999 }, + { code: "3102605", start: 37_795_000, end: 37_799_999 }, + { code: "3128709", start: 37_800_000, end: 37_804_999 }, + { code: "3136900", start: 37_805_000, end: 37_809_999 }, + { code: "3128303", start: 37_810_000, end: 37_819_999 }, + { code: "3104106", start: 37_820_000, end: 37_854_999 }, + { code: "3163904", start: 37_855_000, end: 37_859_999 }, + { code: "3145109", start: 37_860_000, end: 37_879_999 }, + { code: "3109501", start: 37_880_000, end: 37_889_999 }, + { code: "3144102", start: 37_890_000, end: 37_899_999 }, + { code: "3147907", start: 37_900_001, end: 37_904_999 }, + { code: "3126307", start: 37_905_000, end: 37_909_999 }, + { code: "3121209", start: 37_910_000, end: 37_919_999 }, + { code: "3162203", start: 37_920_000, end: 37_921_999 }, + { code: "3170602", start: 37_922_000, end: 37_924_999 }, + { code: "3151503", start: 37_925_000, end: 37_925_999 }, + { code: "3123403", start: 37_926_000, end: 37_926_999 }, + { code: "3164308", start: 37_927_000, end: 37_929_999 }, + { code: "3112802", start: 37_930_000, end: 37_939_999 }, + { code: "3101904", start: 37_940_000, end: 37_944_999 }, + { code: "3162948", start: 37_945_000, end: 37_947_999 }, + { code: "3107604", start: 37_948_000, end: 37_949_999 }, + { code: "3164704", start: 37_950_000, end: 37_959_999 }, + { code: "3165107", start: 37_960_000, end: 37_964_999 }, + { code: "3134806", start: 37_965_000, end: 37_967_999 }, + { code: "3143203", start: 37_968_000, end: 37_969_999 }, + { code: "3152907", start: 37_970_000, end: 37_972_999 }, + { code: "3132909", start: 37_973_000, end: 37_974_999 }, + { code: "3133758", start: 37_975_000, end: 37_979_999 }, + { code: "3115102", start: 37_980_000, end: 37_989_999 }, + { code: "3129707", start: 37_990_000, end: 37_992_999 }, + { code: "3112406", start: 37_993_000, end: 37_996_999 }, + { code: "3116407", start: 37_997_000, end: 37_999_999 }, + { code: "3170107", start: 38_000_001, end: 38_107_999 }, + { code: "3121258", start: 38_108_000, end: 38_109_999 }, + { code: "3100708", start: 38_110_000, end: 38_119_999 }, + { code: "3117306", start: 38_120_000, end: 38_129_999 }, + { code: "3111408", start: 38_130_000, end: 38_139_999 }, + { code: "3152808", start: 38_140_000, end: 38_149_999 }, + { code: "3171105", start: 38_150_000, end: 38_159_999 }, + { code: "3145000", start: 38_160_000, end: 38_169_999 }, + { code: "3149804", start: 38_170_000, end: 38_174_999 }, + { code: "3157708", start: 38_175_000, end: 38_177_999 }, + { code: "3149200", start: 38_178_000, end: 38_179_999 }, + { code: "3104007", start: 38_180_001, end: 38_184_999 }, + { code: "3168101", start: 38_185_000, end: 38_189_999 }, + { code: "3156908", start: 38_190_000, end: 38_194_999 }, + { code: "3118205", start: 38_195_000, end: 38_199_999 }, + { code: "3127107", start: 38_200_000, end: 38_209_999 }, + { code: "3150703", start: 38_210_000, end: 38_219_999 }, + { code: "3151602", start: 38_220_000, end: 38_229_999 }, + { code: "3127008", start: 38_230_000, end: 38_239_999 }, + { code: "3133402", start: 38_240_000, end: 38_249_999 }, + { code: "3116902", start: 38_250_000, end: 38_259_999 }, + { code: "3161304", start: 38_260_000, end: 38_269_999 }, + { code: "3111101", start: 38_270_000, end: 38_279_999 }, + { code: "3134400", start: 38_280_000, end: 38_287_999 }, + { code: "3170438", start: 38_288_000, end: 38_289_999 }, + { code: "3114550", start: 38_290_000, end: 38_294_999 }, + { code: "3138625", start: 38_295_000, end: 38_299_999 }, + { code: "3134202", start: 38_300_001, end: 38_309_999 }, + { code: "3129103", start: 38_310_000, end: 38_319_999 }, + { code: "3159803", start: 38_320_000, end: 38_349_999 }, + { code: "3131406", start: 38_350_000, end: 38_359_999 }, + { code: "3112604", start: 38_360_000, end: 38_369_999 }, + { code: "3109808", start: 38_370_000, end: 38_379_999 }, + { code: "3111804", start: 38_380_000, end: 38_389_999 }, + { code: "3115805", start: 38_390_000, end: 38_399_999 }, + { code: "3170206", start: 38_400_001, end: 38_439_999 }, + { code: "3103504", start: 38_440_001, end: 38_459_999 }, + { code: "3115003", start: 38_460_000, end: 38_464_999 }, + { code: "3103751", start: 38_465_000, end: 38_469_999 }, + { code: "3127909", start: 38_470_000, end: 38_474_999 }, + { code: "3142809", start: 38_475_000, end: 38_479_999 }, + { code: "3169604", start: 38_480_000, end: 38_489_999 }, + { code: "3130705", start: 38_490_000, end: 38_499_999 }, + { code: "3143104", start: 38_500_000, end: 38_509_999 }, + { code: "3131604", start: 38_510_000, end: 38_519_999 }, + { code: "3156403", start: 38_520_000, end: 38_524_999 }, + { code: "3124807", start: 38_525_000, end: 38_529_999 }, + { code: "3123502", start: 38_530_000, end: 38_539_999 }, + { code: "3100104", start: 38_540_000, end: 38_549_999 }, + { code: "3119302", start: 38_550_000, end: 38_569_999 }, + { code: "3128600", start: 38_570_000, end: 38_599_999 }, + { code: "3147006", start: 38_600_000, end: 38_609_999 }, + { code: "3170404", start: 38_610_000, end: 38_624_999 }, + { code: "3109451", start: 38_625_000, end: 38_629_999 }, + { code: "3170479", start: 38_630_000, end: 38_639_999 }, + { code: "3154457", start: 38_640_000, end: 38_649_999 }, + { code: "3108206", start: 38_650_000, end: 38_653_999 }, + { code: "3122470", start: 38_654_000, end: 38_657_999 }, + { code: "3144375", start: 38_658_000, end: 38_659_999 }, + { code: "3109303", start: 38_660_000, end: 38_679_999 }, + { code: "3104502", start: 38_680_000, end: 38_689_999 }, + { code: "3126208", start: 38_690_000, end: 38_699_999 }, + { code: "3148004", start: 38_700_001, end: 38_719_999 }, + { code: "3137502", start: 38_720_000, end: 38_729_999 }, + { code: "3128907", start: 38_730_000, end: 38_734_999 }, + { code: "3120706", start: 38_735_000, end: 38_739_999 }, + { code: "3148103", start: 38_740_001, end: 38_749_999 }, + { code: "3153400", start: 38_750_000, end: 38_754_999 }, + { code: "3137536", start: 38_755_000, end: 38_759_999 }, + { code: "3166808", start: 38_760_000, end: 38_769_999 }, + { code: "3136306", start: 38_770_000, end: 38_778_999 }, + { code: "3108552", start: 38_779_000, end: 38_779_999 }, + { code: "3171006", start: 38_780_000, end: 38_784_999 }, + { code: "3137106", start: 38_785_000, end: 38_789_999 }, + { code: "3161700", start: 38_790_000, end: 38_793_999 }, + { code: "3170750", start: 38_794_000, end: 38_799_999 }, + { code: "3162104", start: 38_800_000, end: 38_804_999 }, + { code: "3159704", start: 38_805_000, end: 38_809_999 }, + { code: "3155504", start: 38_810_000, end: 38_819_999 }, + { code: "3114303", start: 38_840_000, end: 38_859_999 }, + { code: "3103801", start: 38_860_000, end: 38_869_999 }, + { code: "3141207", start: 38_870_000, end: 38_879_999 }, + { code: "3168903", start: 38_880_000, end: 38_899_999 }, + { code: "3105103", start: 38_900_000, end: 38_909_999 }, + { code: "3130309", start: 38_910_000, end: 38_929_999 }, + { code: "3141306", start: 38_930_000, end: 38_949_999 }, + { code: "3129509", start: 38_950_000, end: 38_959_999 }, + { code: "3153004", start: 38_960_000, end: 38_969_999 }, + { code: "3111507", start: 38_970_000, end: 38_979_999 }, + { code: "3168200", start: 38_980_000, end: 38_989_999 }, + { code: "3119807", start: 38_990_000, end: 39_099_999 }, + { code: "3121605", start: 39_100_000, end: 39_119_999 }, + { code: "3127602", start: 39_120_000, end: 39_129_999 }, + { code: "3121001", start: 39_130_000, end: 39_134_999 }, + { code: "3153301", start: 39_135_000, end: 39_139_999 }, + { code: "3102407", start: 39_140_000, end: 39_149_999 }, + { code: "3167103", start: 39_150_000, end: 39_159_999 }, + { code: "3160207", start: 39_160_000, end: 39_164_999 }, + { code: "3166501", start: 39_165_000, end: 39_169_999 }, + { code: "3156007", start: 39_170_000, end: 39_179_999 }, + { code: "3125408", start: 39_180_000, end: 39_184_999 }, + { code: "3125507", start: 39_185_000, end: 39_187_999 }, + { code: "3120102", start: 39_188_000, end: 39_189_999 }, + { code: "3165909", start: 39_190_000, end: 39_199_999 }, + { code: "3119104", start: 39_200_000, end: 39_204_999 }, + { code: "3169356", start: 39_205_000, end: 39_209_999 }, + { code: "3160603", start: 39_210_000, end: 39_214_999 }, + { code: "3142502", start: 39_215_000, end: 39_218_999 }, + { code: "3104809", start: 39_219_000, end: 39_219_999 }, + { code: "3109204", start: 39_230_000, end: 39_236_999 }, + { code: "3125705", start: 39_237_000, end: 39_239_999 }, + { code: "3136405", start: 39_240_000, end: 39_242_999 }, + { code: "3131109", start: 39_243_000, end: 39_244_999 }, + { code: "3153202", start: 39_245_000, end: 39_247_999 }, + { code: "3143609", start: 39_248_000, end: 39_249_999 }, + { code: "3138104", start: 39_250_000, end: 39_259_999 }, + { code: "3170800", start: 39_260_000, end: 39_269_999 }, + { code: "3151206", start: 39_270_000, end: 39_279_999 }, + { code: "3109402", start: 39_280_000, end: 39_289_999 }, + { code: "3164209", start: 39_290_000, end: 39_294_999 }, + { code: "3157609", start: 39_295_000, end: 39_299_999 }, + { code: "3161106", start: 39_300_000, end: 39_313_999 }, + { code: "3116159", start: 39_314_000, end: 39_314_999 }, + { code: "3170529", start: 39_315_000, end: 39_316_999 }, + { code: "3150570", start: 39_317_000, end: 39_317_999 }, + { code: "3130051", start: 39_318_000, end: 39_319_999 }, + { code: "3170008", start: 39_320_000, end: 39_327_999 }, + { code: "3152131", start: 39_328_000, end: 39_329_999 }, + { code: "3108602", start: 39_330_000, end: 39_334_999 }, + { code: "3135357", start: 39_335_000, end: 39_335_999 }, + { code: "3138682", start: 39_336_000, end: 39_337_999 }, + { code: "3111150", start: 39_338_000, end: 39_339_999 }, + { code: "3118809", start: 39_340_000, end: 39_349_999 }, + { code: "3129608", start: 39_350_000, end: 39_354_999 }, + { code: "3162252", start: 39_355_000, end: 39_359_999 }, + { code: "3137304", start: 39_360_000, end: 39_362_999 }, + { code: "3123809", start: 39_363_000, end: 39_364_999 }, + { code: "3162658", start: 39_365_000, end: 39_369_999 }, + { code: "3135605", start: 39_370_000, end: 39_372_999 }, + { code: "3142007", start: 39_373_000, end: 39_377_999 }, + { code: "3147956", start: 39_378_000, end: 39_379_999 }, + { code: "3116506", start: 39_380_000, end: 39_386_999 }, + { code: "3126604", start: 39_387_000, end: 39_389_999 }, + { code: "3107307", start: 39_390_000, end: 39_396_999 }, + { code: "3128253", start: 39_397_000, end: 39_397_999 }, + { code: "3145455", start: 39_398_000, end: 39_399_999 }, + { code: "3143302", start: 39_400_001, end: 39_429_999 }, + { code: "3162401", start: 39_430_000, end: 39_436_999 }, + { code: "3138658", start: 39_437_000, end: 39_439_999 }, + { code: "3135100", start: 39_440_000, end: 39_449_999 }, + { code: "3170909", start: 39_450_000, end: 39_454_999 }, + { code: "3129657", start: 39_455_000, end: 39_457_999 }, + { code: "3171030", start: 39_458_000, end: 39_459_999 }, + { code: "3139300", start: 39_460_000, end: 39_464_999 }, + { code: "3142254", start: 39_465_000, end: 39_466_999 }, + { code: "3136959", start: 39_467_000, end: 39_469_999 }, + { code: "3132107", start: 39_470_000, end: 39_471_999 }, + { code: "3112703", start: 39_472_000, end: 39_474_999 }, + { code: "3162450", start: 39_475_000, end: 39_477_999 }, + { code: "3140852", start: 39_478_000, end: 39_479_999 }, + { code: "3135209", start: 39_480_000, end: 39_488_999 }, + { code: "3117836", start: 39_489_000, end: 39_489_999 }, + { code: "3108255", start: 39_490_000, end: 39_491_999 }, + { code: "3149150", start: 39_492_000, end: 39_494_999 }, + { code: "3142700", start: 39_495_000, end: 39_499_999 }, + { code: "3142908", start: 39_500_000, end: 39_504_999 }, + { code: "3127339", start: 39_505_000, end: 39_507_999 }, + { code: "3135050", start: 39_508_000, end: 39_509_999 }, + { code: "3124302", start: 39_510_000, end: 39_515_999 }, + { code: "3139250", start: 39_516_000, end: 39_516_999 }, + { code: "3146552", start: 39_517_000, end: 39_517_999 }, + { code: "3166956", start: 39_518_000, end: 39_519_999 }, + { code: "3152204", start: 39_520_000, end: 39_524_999 }, + { code: "3145059", start: 39_525_000, end: 39_525_999 }, + { code: "3115474", start: 39_526_000, end: 39_526_999 }, + { code: "3141009", start: 39_527_000, end: 39_528_999 }, + { code: "3154507", start: 39_529_000, end: 39_529_999 }, + { code: "3155603", start: 39_530_000, end: 39_534_999 }, + { code: "3170651", start: 39_535_000, end: 39_535_999 }, + { code: "3130655", start: 39_536_000, end: 39_537_999 }, + { code: "3160454", start: 39_538_000, end: 39_539_999 }, + { code: "3162708", start: 39_540_000, end: 39_546_999 }, + { code: "3143450", start: 39_547_000, end: 39_549_999 }, + { code: "3168002", start: 39_550_000, end: 39_552_999 }, + { code: "3144656", start: 39_553_000, end: 39_554_999 }, + { code: "3106655", start: 39_555_000, end: 39_557_999 }, + { code: "3127073", start: 39_558_000, end: 39_559_999 }, + { code: "3157005", start: 39_560_000, end: 39_562_999 }, + { code: "3157377", start: 39_563_000, end: 39_564_999 }, + { code: "3156502", start: 39_565_000, end: 39_567_999 }, + { code: "3145372", start: 39_568_000, end: 39_568_999 }, + { code: "3120870", start: 39_569_000, end: 39_569_999 }, + { code: "3127800", start: 39_570_000, end: 39_572_999 }, + { code: "3146255", start: 39_573_000, end: 39_574_999 }, + { code: "3136579", start: 39_575_000, end: 39_579_999 }, + { code: "3126703", start: 39_580_000, end: 39_589_999 }, + { code: "3136801", start: 39_590_000, end: 39_591_999 }, + { code: "3127354", start: 39_592_000, end: 39_593_999 }, + { code: "3132008", start: 39_594_000, end: 39_594_999 }, + { code: "3108503", start: 39_595_000, end: 39_597_999 }, + { code: "3120300", start: 39_598_000, end: 39_599_999 }, + { code: "3103405", start: 39_600_000, end: 39_609_999 }, + { code: "3134004", start: 39_610_000, end: 39_614_999 }, + { code: "3152170", start: 39_615_000, end: 39_619_999 }, + { code: "3141405", start: 39_620_000, end: 39_624_999 }, + { code: "3133303", start: 39_625_000, end: 39_627_999 }, + { code: "3117009", start: 39_628_000, end: 39_629_999 }, + { code: "3171600", start: 39_630_000, end: 39_634_999 }, + { code: "3119500", start: 39_635_000, end: 39_639_999 }, + { code: "3106507", start: 39_640_000, end: 39_641_999 }, + { code: "3136520", start: 39_642_000, end: 39_643_999 }, + { code: "3126505", start: 39_644_000, end: 39_644_999 }, + { code: "3135456", start: 39_645_000, end: 39_647_999 }, + { code: "3116100", start: 39_648_000, end: 39_649_999 }, + { code: "3141801", start: 39_650_000, end: 39_654_999 }, + { code: "3138351", start: 39_655_000, end: 39_659_999 }, + { code: "3169703", start: 39_660_000, end: 39_662_999 }, + { code: "3171071", start: 39_663_000, end: 39_664_999 }, + { code: "3113503", start: 39_665_000, end: 39_669_999 }, + { code: "3132503", start: 39_670_000, end: 39_677_999 }, + { code: "3104452", start: 39_678_000, end: 39_679_999 }, + { code: "3112307", start: 39_680_000, end: 39_684_999 }, + { code: "3102852", start: 39_685_000, end: 39_687_999 }, + { code: "3165552", start: 39_688_000, end: 39_689_999 }, + { code: "3139201", start: 39_690_000, end: 39_694_999 }, + { code: "3126752", start: 39_695_000, end: 39_699_999 }, + { code: "3148608", start: 39_700_000, end: 39_702_999 }, + { code: "3112059", start: 39_703_000, end: 39_703_999 }, + { code: "3162807", start: 39_704_000, end: 39_706_999 }, + { code: "3163508", start: 39_707_000, end: 39_707_999 }, + { code: "3126950", start: 39_708_000, end: 39_709_999 }, + { code: "3119203", start: 39_710_000, end: 39_714_999 }, + { code: "3171907", start: 39_715_000, end: 39_717_999 }, + { code: "3144201", start: 39_718_000, end: 39_719_999 }, + { code: "3127503", start: 39_720_000, end: 39_722_999 }, + { code: "3161601", start: 39_723_000, end: 39_724_999 }, + { code: "3157500", start: 39_725_000, end: 39_727_999 }, + { code: "3165503", start: 39_728_000, end: 39_729_999 }, + { code: "3171808", start: 39_730_000, end: 39_734_999 }, + { code: "3122207", start: 39_735_000, end: 39_739_999 }, + { code: "3128006", start: 39_740_000, end: 39_744_999 }, + { code: "3166105", start: 39_745_000, end: 39_749_999 }, + { code: "3156809", start: 39_750_000, end: 39_754_999 }, + { code: "3140605", start: 39_755_000, end: 39_764_999 }, + { code: "3148400", start: 39_765_000, end: 39_769_999 }, + { code: "3116803", start: 39_770_000, end: 39_774_999 }, + { code: "3136553", start: 39_775_000, end: 39_779_999 }, + { code: "3158201", start: 39_780_000, end: 39_783_999 }, + { code: "3164100", start: 39_784_000, end: 39_784_999 }, + { code: "3163003", start: 39_785_000, end: 39_789_999 }, + { code: "3100609", start: 39_790_000, end: 39_794_999 }, + { code: "3164506", start: 39_795_000, end: 39_799_999 }, + { code: "3168606", start: 39_800_001, end: 39_809_999 }, + { code: "3113008", start: 39_810_000, end: 39_813_999 }, + { code: "3148509", start: 39_814_000, end: 39_814_999 }, + { code: "3132305", start: 39_815_000, end: 39_815_999 }, + { code: "3115458", start: 39_816_000, end: 39_816_999 }, + { code: "3145356", start: 39_817_000, end: 39_817_999 }, + { code: "3146305", start: 39_818_000, end: 39_819_999 }, + { code: "3145307", start: 39_820_000, end: 39_824_999 }, + { code: "3137007", start: 39_825_000, end: 39_826_999 }, + { code: "3152402", start: 39_827_000, end: 39_829_999 }, + { code: "3132701", start: 39_830_000, end: 39_834_999 }, + { code: "3110806", start: 39_835_000, end: 39_836_999 }, + { code: "3135076", start: 39_837_000, end: 39_839_999 }, + { code: "3126802", start: 39_840_000, end: 39_847_999 }, + { code: "3163300", start: 39_848_000, end: 39_849_999 }, + { code: "3104700", start: 39_850_000, end: 39_854_999 }, + { code: "3146206", start: 39_855_000, end: 39_859_999 }, + { code: "3144300", start: 39_860_000, end: 39_863_999 }, + { code: "3113701", start: 39_864_000, end: 39_867_999 }, + { code: "3166709", start: 39_868_000, end: 39_869_999 }, + { code: "3127057", start: 39_870_000, end: 39_872_999 }, + { code: "3138906", start: 39_873_000, end: 39_873_999 }, + { code: "3157658", start: 39_874_000, end: 39_874_999 }, + { code: "3106606", start: 39_875_000, end: 39_877_999 }, + { code: "3170305", start: 39_878_000, end: 39_879_999 }, + { code: "3100906", start: 39_880_000, end: 39_884_999 }, + { code: "3120151", start: 39_885_000, end: 39_889_999 }, + { code: "3136009", start: 39_890_000, end: 39_892_999 }, + { code: "3143153", start: 39_893_000, end: 39_894_999 }, + { code: "3125606", start: 39_895_000, end: 39_899_999 }, + { code: "3101706", start: 39_900_000, end: 39_911_999 }, + { code: "3122454", start: 39_912_000, end: 39_914_999 }, + { code: "3140555", start: 39_915_000, end: 39_916_999 }, + { code: "3105202", start: 39_917_000, end: 39_919_999 }, + { code: "3136504", start: 39_920_000, end: 39_924_999 }, + { code: "3157104", start: 39_925_000, end: 39_927_999 }, + { code: "3158102", start: 39_928_000, end: 39_929_999 }, + { code: "3134707", start: 39_930_000, end: 39_934_999 }, + { code: "3160306", start: 39_935_000, end: 39_939_999 }, + { code: "3155108", start: 39_940_000, end: 39_944_999 }, + { code: "3146750", start: 39_945_000, end: 39_949_999 }, + { code: "3156601", start: 39_950_000, end: 39_959_999 }, + { code: "3135803", start: 39_960_000, end: 39_969_999 }, + { code: "3148707", start: 39_970_000, end: 39_979_999 }, + { code: "3102704", start: 39_980_000, end: 39_989_999 }, + { code: "3101003", start: 39_990_000, end: 39_994_999 }, + { code: "3122355", start: 39_995_000, end: 39_997_999 }, + { code: "2927408", start: 40_000_001, end: 42_599_999 }, + { code: "2919926", start: 42_600_000, end: 42_699_999 }, + { code: "2919207", start: 42_700_001, end: 42_799_999 }, + { code: "2905701", start: 42_800_001, end: 42_849_999 }, + { code: "2910057", start: 42_850_000, end: 43_699_999 }, + { code: "2930709", start: 43_700_000, end: 43_799_999 }, + { code: "2906501", start: 43_800_001, end: 43_849_999 }, + { code: "2929503", start: 43_850_000, end: 43_899_999 }, + { code: "2929206", start: 43_900_000, end: 43_999_999 }, + { code: "2910800", start: 44_000_001, end: 44_149_999 }, + { code: "2927507", start: 44_150_000, end: 44_159_999 }, + { code: "2931103", start: 44_160_000, end: 44_179_999 }, + { code: "2901700", start: 44_180_000, end: 44_189_999 }, + { code: "2928802", start: 44_190_000, end: 44_199_999 }, + { code: "2928604", start: 44_200_000, end: 44_219_999 }, + { code: "2929750", start: 44_220_000, end: 44_229_999 }, + { code: "2901106", start: 44_230_000, end: 44_244_999 }, + { code: "2908507", start: 44_245_000, end: 44_249_999 }, + { code: "2908903", start: 44_250_000, end: 44_254_999 }, + { code: "2914505", start: 44_255_000, end: 44_259_999 }, + { code: "2928307", start: 44_260_000, end: 44_269_999 }, + { code: "2931707", start: 44_270_000, end: 44_279_999 }, + { code: "2931400", start: 44_280_000, end: 44_299_999 }, + { code: "2904902", start: 44_300_000, end: 44_319_999 }, + { code: "2908200", start: 44_320_000, end: 44_329_999 }, + { code: "2929305", start: 44_330_000, end: 44_339_999 }, + { code: "2922300", start: 44_340_000, end: 44_344_999 }, + { code: "2904852", start: 44_345_000, end: 44_349_999 }, + { code: "2911600", start: 44_350_000, end: 44_359_999 }, + { code: "2929008", start: 44_360_000, end: 44_379_999 }, + { code: "2909802", start: 44_380_000, end: 44_399_999 }, + { code: "2922508", start: 44_400_000, end: 44_419_999 }, + { code: "2920601", start: 44_420_000, end: 44_449_999 }, + { code: "2927309", start: 44_450_000, end: 44_459_999 }, + { code: "2916104", start: 44_460_000, end: 44_469_999 }, + { code: "2933208", start: 44_470_000, end: 44_479_999 }, + { code: "2917805", start: 44_480_000, end: 44_489_999 }, + { code: "2902302", start: 44_490_000, end: 44_499_999 }, + { code: "2907301", start: 44_500_000, end: 44_519_999 }, + { code: "2925956", start: 44_520_000, end: 44_529_999 }, + { code: "2929602", start: 44_530_000, end: 44_539_999 }, + { code: "2908309", start: 44_540_000, end: 44_549_999 }, + { code: "2929107", start: 44_550_000, end: 44_559_999 }, + { code: "2910206", start: 44_560_000, end: 44_564_999 }, + { code: "2933174", start: 44_565_000, end: 44_569_999 }, + { code: "2928703", start: 44_570_001, end: 44_574_999 }, + { code: "2922201", start: 44_575_000, end: 44_579_999 }, + { code: "2929404", start: 44_580_000, end: 44_589_999 }, + { code: "2928505", start: 44_590_000, end: 44_599_999 }, + { code: "2914000", start: 44_600_000, end: 44_609_999 }, + { code: "2924652", start: 44_610_000, end: 44_619_999 }, + { code: "2902609", start: 44_620_000, end: 44_629_999 }, + { code: "2920106", start: 44_630_000, end: 44_634_999 }, + { code: "2933059", start: 44_635_000, end: 44_639_999 }, + { code: "2926301", start: 44_640_000, end: 44_641_999 }, + { code: "2922730", start: 44_642_000, end: 44_644_999 }, + { code: "2906857", start: 44_645_000, end: 44_649_999 }, + { code: "2911253", start: 44_650_000, end: 44_654_999 }, + { code: "2924058", start: 44_655_000, end: 44_659_999 }, + { code: "2930402", start: 44_660_000, end: 44_669_999 }, + { code: "2901502", start: 44_670_000, end: 44_679_999 }, + { code: "2913804", start: 44_680_000, end: 44_689_999 }, + { code: "2933158", start: 44_690_000, end: 44_694_999 }, + { code: "2906873", start: 44_695_000, end: 44_697_999 }, + { code: "2929370", start: 44_698_000, end: 44_699_999 }, + { code: "2917508", start: 44_700_000, end: 44_709_999 }, + { code: "2930600", start: 44_710_000, end: 44_712_999 }, + { code: "2925931", start: 44_713_000, end: 44_714_999 }, + { code: "2933109", start: 44_715_000, end: 44_717_999 }, + { code: "2923357", start: 44_718_000, end: 44_719_999 }, + { code: "2921203", start: 44_720_000, end: 44_729_999 }, + { code: "2905107", start: 44_730_000, end: 44_739_999 }, + { code: "2929800", start: 44_740_000, end: 44_744_999 }, + { code: "2921401", start: 44_745_000, end: 44_749_999 }, + { code: "2905503", start: 44_750_000, end: 44_754_999 }, + { code: "2925253", start: 44_755_000, end: 44_769_999 }, + { code: "2924603", start: 44_770_000, end: 44_774_999 }, + { code: "2910859", start: 44_775_000, end: 44_779_999 }, + { code: "2901809", start: 44_780_000, end: 44_789_999 }, + { code: "2906006", start: 44_790_000, end: 44_797_999 }, + { code: "2932457", start: 44_798_000, end: 44_799_999 }, + { code: "2922102", start: 44_800_000, end: 44_829_999 }, + { code: "2924801", start: 44_830_000, end: 44_839_999 }, + { code: "2931301", start: 44_840_000, end: 44_849_999 }, + { code: "2921708", start: 44_850_000, end: 44_879_999 }, + { code: "2905305", start: 44_880_000, end: 44_884_999 }, + { code: "2922052", start: 44_885_000, end: 44_889_999 }, + { code: "2906204", start: 44_890_000, end: 44_894_999 }, + { code: "2903235", start: 44_895_000, end: 44_899_999 }, + { code: "2914604", start: 44_900_000, end: 44_904_999 }, + { code: "2919157", start: 44_905_000, end: 44_909_999 }, + { code: "2901155", start: 44_910_000, end: 44_914_999 }, + { code: "2929255", start: 44_915_000, end: 44_919_999 }, + { code: "2918357", start: 44_920_000, end: 44_924_999 }, + { code: "2918506", start: 44_925_000, end: 44_929_999 }, + { code: "2925600", start: 44_930_000, end: 44_939_999 }, + { code: "2907608", start: 44_940_000, end: 44_949_999 }, + { code: "2932408", start: 44_950_000, end: 44_959_999 }, + { code: "2913101", start: 44_960_000, end: 44_969_999 }, + { code: "2912400", start: 44_970_000, end: 44_989_999 }, + { code: "2903003", start: 44_990_000, end: 44_999_999 }, + { code: "2933307", start: 45_000_001, end: 45_119_999 }, + { code: "2902906", start: 45_120_000, end: 45_129_999 }, + { code: "2904803", start: 45_130_000, end: 45_139_999 }, + { code: "2915809", start: 45_140_000, end: 45_149_999 }, + { code: "2910404", start: 45_150_000, end: 45_154_999 }, + { code: "2926657", start: 45_155_000, end: 45_156_999 }, + { code: "2906709", start: 45_157_000, end: 45_159_999 }, + { code: "2903508", start: 45_160_000, end: 45_169_999 }, + { code: "2931806", start: 45_170_000, end: 45_176_999 }, + { code: "2906899", start: 45_177_000, end: 45_179_999 }, + { code: "2901205", start: 45_180_000, end: 45_189_999 }, + { code: "2925006", start: 45_190_000, end: 45_199_999 }, + { code: "2918001", start: 45_200_001, end: 45_214_999 }, + { code: "2918704", start: 45_215_000, end: 45_219_999 }, + { code: "2900603", start: 45_220_000, end: 45_224_999 }, + { code: "2918308", start: 45_225_000, end: 45_229_999 }, + { code: "2915106", start: 45_230_000, end: 45_239_999 }, + { code: "2920403", start: 45_240_000, end: 45_249_999 }, + { code: "2903706", start: 45_250_000, end: 45_254_999 }, + { code: "2921450", start: 45_255_000, end: 45_259_999 }, + { code: "2925105", start: 45_260_000, end: 45_262_999 }, + { code: "2903953", start: 45_263_000, end: 45_264_999 }, + { code: "2905156", start: 45_265_000, end: 45_269_999 }, + { code: "2922706", start: 45_270_000, end: 45_279_999 }, + { code: "2913507", start: 45_280_000, end: 45_289_999 }, + { code: "2912301", start: 45_290_000, end: 45_299_999 }, + { code: "2901007", start: 45_300_000, end: 45_304_999 }, + { code: "2910305", start: 45_305_000, end: 45_309_999 }, + { code: "2932101", start: 45_310_000, end: 45_314_999 }, + { code: "2921302", start: 45_315_000, end: 45_319_999 }, + { code: "2927903", start: 45_320_000, end: 45_324_999 }, + { code: "2904308", start: 45_325_000, end: 45_329_999 }, + { code: "2909505", start: 45_330_000, end: 45_339_999 }, + { code: "2916708", start: 45_340_000, end: 45_344_999 }, + { code: "2917607", start: 45_345_000, end: 45_349_999 }, + { code: "2916906", start: 45_350_000, end: 45_354_999 }, + { code: "2901957", start: 45_355_000, end: 45_359_999 }, + { code: "2920502", start: 45_360_000, end: 45_364_999 }, + { code: "2919058", start: 45_365_000, end: 45_369_999 }, + { code: "2914208", start: 45_370_000, end: 45_374_999 }, + { code: "2924900", start: 45_375_000, end: 45_389_999 }, + { code: "2922805", start: 45_390_000, end: 45_399_999 }, + { code: "2932903", start: 45_400_000, end: 45_415_999 }, + { code: "2925758", start: 45_416_000, end: 45_419_999 }, + { code: "2905404", start: 45_420_000, end: 45_429_999 }, + { code: "2931202", start: 45_430_000, end: 45_434_999 }, + { code: "2917300", start: 45_435_000, end: 45_435_999 }, + { code: "2924678", start: 45_436_000, end: 45_439_999 }, + { code: "2922607", start: 45_440_000, end: 45_442_999 }, + { code: "2913457", start: 45_443_000, end: 45_444_999 }, + { code: "2905800", start: 45_445_000, end: 45_449_999 }, + { code: "2911204", start: 45_450_000, end: 45_451_999 }, + { code: "2922755", start: 45_452_000, end: 45_454_999 }, + { code: "2915700", start: 45_455_000, end: 45_459_999 }, + { code: "2933505", start: 45_460_000, end: 45_464_999 }, + { code: "2931608", start: 45_465_000, end: 45_469_999 }, + { code: "2918209", start: 45_470_000, end: 45_479_999 }, + { code: "2922409", start: 45_480_000, end: 45_489_999 }, + { code: "2918803", start: 45_490_000, end: 45_499_999 }, + { code: "2912707", start: 45_500_000, end: 45_519_999 }, + { code: "2920700", start: 45_520_000, end: 45_529_999 }, + { code: "2914901", start: 45_530_000, end: 45_539_999 }, + { code: "2911501", start: 45_540_000, end: 45_544_999 }, + { code: "2932200", start: 45_545_000, end: 45_549_999 }, + { code: "2932309", start: 45_550_000, end: 45_559_999 }, + { code: "2903102", start: 45_560_000, end: 45_569_999 }, + { code: "2913903", start: 45_570_000, end: 45_579_999 }, + { code: "2912905", start: 45_580_000, end: 45_584_999 }, + { code: "2915205", start: 45_585_000, end: 45_589_999 }, + { code: "2910008", start: 45_590_000, end: 45_599_999 }, + { code: "2914802", start: 45_600_001, end: 45_614_999 }, + { code: "2904704", start: 45_615_000, end: 45_619_999 }, + { code: "2929354", start: 45_620_000, end: 45_621_999 }, + { code: "2918555", start: 45_622_000, end: 45_624_999 }, + { code: "2903300", start: 45_625_000, end: 45_629_999 }, + { code: "2915502", start: 45_630_000, end: 45_637_999 }, + { code: "2908002", start: 45_638_000, end: 45_639_999 }, + { code: "2900900", start: 45_640_000, end: 45_644_999 }, + { code: "2916609", start: 45_645_000, end: 45_649_999 }, + { code: "2913606", start: 45_650_001, end: 45_674_999 }, + { code: "2902401", start: 45_675_000, end: 45_679_999 }, + { code: "2932705", start: 45_680_000, end: 45_689_999 }, + { code: "2932507", start: 45_690_000, end: 45_694_999 }, + { code: "2902252", start: 45_695_000, end: 45_699_999 }, + { code: "2916401", start: 45_700_000, end: 45_709_999 }, + { code: "2917102", start: 45_710_000, end: 45_719_999 }, + { code: "2910909", start: 45_720_000, end: 45_724_999 }, + { code: "2927804", start: 45_725_000, end: 45_729_999 }, + { code: "2915403", start: 45_730_000, end: 45_739_999 }, + { code: "2911006", start: 45_740_000, end: 45_744_999 }, + { code: "2912103", start: 45_745_000, end: 45_749_999 }, + { code: "2916203", start: 45_750_000, end: 45_759_999 }, + { code: "2919702", start: 45_760_000, end: 45_769_999 }, + { code: "2920007", start: 45_770_000, end: 45_779_999 }, + { code: "2916807", start: 45_780_000, end: 45_789_999 }, + { code: "2925402", start: 45_790_000, end: 45_799_999 }, + { code: "2903409", start: 45_800_000, end: 45_806_999 }, + { code: "2927705", start: 45_807_000, end: 45_809_999 }, + { code: "2925303", start: 45_810_000, end: 45_819_999 }, + { code: "2910727", start: 45_820_001, end: 45_833_999 }, + { code: "2918456", start: 45_834_000, end: 45_835_999 }, + { code: "2915601", start: 45_836_000, end: 45_839_999 }, + { code: "2911808", start: 45_840_000, end: 45_847_999 }, + { code: "2914653", start: 45_848_000, end: 45_849_999 }, + { code: "2915304", start: 45_850_000, end: 45_854_999 }, + { code: "2916302", start: 45_855_000, end: 45_859_999 }, + { code: "2906303", start: 45_860_000, end: 45_864_999 }, + { code: "2928059", start: 45_865_000, end: 45_869_999 }, + { code: "2920908", start: 45_870_000, end: 45_879_999 }, + { code: "2905602", start: 45_880_000, end: 45_889_999 }, + { code: "2923902", start: 45_890_000, end: 45_899_999 }, + { code: "2906907", start: 45_900_000, end: 45_909_999 }, + { code: "2900801", start: 45_910_000, end: 45_919_999 }, + { code: "2923001", start: 45_920_000, end: 45_929_999 }, + { code: "2922003", start: 45_930_000, end: 45_939_999 }, + { code: "2912806", start: 45_940_000, end: 45_949_999 }, + { code: "2918902", start: 45_950_000, end: 45_954_999 }, + { code: "2933257", start: 45_955_000, end: 45_959_999 }, + { code: "2921104", start: 45_960_000, end: 45_969_999 }, + { code: "2916005", start: 45_970_000, end: 45_979_999 }, + { code: "2925501", start: 45_980_000, end: 45_984_999 }, + { code: "2931350", start: 45_985_001, end: 45_999_999 }, + { code: "2904605", start: 46_100_000, end: 46_109_999 }, + { code: "2920304", start: 46_110_000, end: 46_129_999 }, + { code: "2902005", start: 46_130_000, end: 46_139_999 }, + { code: "2919504", start: 46_140_000, end: 46_164_999 }, + { code: "2910107", start: 46_165_000, end: 46_169_999 }, + { code: "2926707", start: 46_170_000, end: 46_179_999 }, + { code: "2900504", start: 46_180_000, end: 46_189_999 }, + { code: "2923605", start: 46_190_000, end: 46_199_999 }, + { code: "2908705", start: 46_200_000, end: 46_204_999 }, + { code: "2911659", start: 46_205_000, end: 46_219_999 }, + { code: "2926806", start: 46_220_000, end: 46_249_999 }, + { code: "2925709", start: 46_250_000, end: 46_254_999 }, + { code: "2919959", start: 46_255_000, end: 46_269_999 }, + { code: "2924702", start: 46_270_000, end: 46_279_999 }, + { code: "2909000", start: 46_280_000, end: 46_289_999 }, + { code: "2921807", start: 46_290_000, end: 46_299_999 }, + { code: "2905008", start: 46_300_000, end: 46_309_999 }, + { code: "2917409", start: 46_310_000, end: 46_329_999 }, + { code: "2919405", start: 46_330_000, end: 46_349_999 }, + { code: "2932606", start: 46_350_000, end: 46_359_999 }, + { code: "2924504", start: 46_360_000, end: 46_379_999 }, + { code: "2906600", start: 46_380_000, end: 46_389_999 }, + { code: "2912004", start: 46_390_000, end: 46_399_999 }, + { code: "2905206", start: 46_400_000, end: 46_424_999 }, + { code: "2918753", start: 46_425_000, end: 46_429_999 }, + { code: "2911709", start: 46_430_000, end: 46_437_999 }, + { code: "2917334", start: 46_438_000, end: 46_439_999 }, + { code: "2920205", start: 46_440_000, end: 46_444_999 }, + { code: "2907103", start: 46_445_000, end: 46_445_999 }, + { code: "2910776", start: 46_446_000, end: 46_449_999 }, + { code: "2930006", start: 46_450_000, end: 46_459_999 }, + { code: "2923407", start: 46_460_000, end: 46_469_999 }, + { code: "2926400", start: 46_470_000, end: 46_479_999 }, + { code: "2921054", start: 46_480_000, end: 46_489_999 }, + { code: "2913408", start: 46_490_000, end: 46_499_999 }, + { code: "2919801", start: 46_500_000, end: 46_529_999 }, + { code: "2904100", start: 46_530_000, end: 46_539_999 }, + { code: "2912509", start: 46_540_000, end: 46_549_999 }, + { code: "2926905", start: 46_550_000, end: 46_569_999 }, + { code: "2904209", start: 46_570_000, end: 46_574_999 }, + { code: "2907558", start: 46_575_000, end: 46_579_999 }, + { code: "2931053", start: 46_580_000, end: 46_599_999 }, + { code: "2931004", start: 46_600_000, end: 46_619_999 }, + { code: "2908804", start: 46_620_000, end: 46_639_999 }, + { code: "2917201", start: 46_640_000, end: 46_649_999 }, + { code: "2902807", start: 46_650_000, end: 46_669_999 }, + { code: "2918605", start: 46_670_000, end: 46_689_999 }, + { code: "2900108", start: 46_690_000, end: 46_699_999 }, + { code: "2913002", start: 46_700_000, end: 46_729_999 }, + { code: "2923035", start: 46_730_000, end: 46_739_999 }, + { code: "2904001", start: 46_740_000, end: 46_749_999 }, + { code: "2921906", start: 46_750_000, end: 46_759_999 }, + { code: "2912202", start: 46_760_000, end: 46_764_999 }, + { code: "2924306", start: 46_765_000, end: 46_769_999 }, + { code: "2914307", start: 46_770_000, end: 46_779_999 }, + { code: "2920809", start: 46_780_000, end: 46_789_999 }, + { code: "2915007", start: 46_790_000, end: 46_799_999 }, + { code: "2927200", start: 46_800_000, end: 46_804_999 }, + { code: "2919603", start: 46_805_000, end: 46_809_999 }, + { code: "2932804", start: 46_810_000, end: 46_819_999 }, + { code: "2904050", start: 46_820_000, end: 46_824_999 }, + { code: "2919009", start: 46_825_000, end: 46_829_999 }, + { code: "2901304", start: 46_830_000, end: 46_834_999 }, + { code: "2922854", start: 46_835_000, end: 46_839_999 }, + { code: "2912608", start: 46_840_000, end: 46_849_999 }, + { code: "2903805", start: 46_850_000, end: 46_859_999 }, + { code: "2911907", start: 46_860_000, end: 46_874_999 }, + { code: "2916856", start: 46_875_000, end: 46_879_999 }, + { code: "2914703", start: 46_880_000, end: 46_899_999 }, + { code: "2929909", start: 46_900_000, end: 46_929_999 }, + { code: "2923506", start: 46_930_000, end: 46_959_999 }, + { code: "2919306", start: 46_960_000, end: 46_969_999 }, + { code: "2933406", start: 46_970_000, end: 46_979_999 }, + { code: "2914406", start: 46_980_000, end: 46_989_999 }, + { code: "2930808", start: 46_990_000, end: 47_099_999 }, + { code: "2902708", start: 47_100_000, end: 47_114_999 }, + { code: "2922250", start: 47_115_000, end: 47_119_999 }, + { code: "2904753", start: 47_120_000, end: 47_149_999 }, + { code: "2928406", start: 47_150_000, end: 47_159_999 }, + { code: "2920452", start: 47_160_000, end: 47_199_999 }, + { code: "2926004", start: 47_200_000, end: 47_219_999 }, + { code: "2905909", start: 47_220_000, end: 47_239_999 }, + { code: "2924405", start: 47_240_000, end: 47_299_999 }, + { code: "2907202", start: 47_300_000, end: 47_349_999 }, + { code: "2930204", start: 47_350_000, end: 47_399_999 }, + { code: "2933604", start: 47_400_000, end: 47_439_999 }, + { code: "2915353", start: 47_440_000, end: 47_449_999 }, + { code: "2911303", start: 47_450_000, end: 47_499_999 }, + { code: "2923704", start: 47_500_000, end: 47_519_999 }, + { code: "2913200", start: 47_520_000, end: 47_529_999 }, + { code: "2923209", start: 47_530_000, end: 47_559_999 }, + { code: "2904506", start: 47_560_000, end: 47_579_999 }, + { code: "2921609", start: 47_580_000, end: 47_589_999 }, + { code: "2914109", start: 47_590_000, end: 47_599_999 }, + { code: "2903904", start: 47_600_000, end: 47_609_999 }, + { code: "2930758", start: 47_610_000, end: 47_629_999 }, + { code: "2930154", start: 47_630_000, end: 47_639_999 }, + { code: "2928109", start: 47_640_000, end: 47_649_999 }, + { code: "2909307", start: 47_650_000, end: 47_654_999 }, + { code: "2917359", start: 47_655_000, end: 47_664_999 }, + { code: "2929057", start: 47_665_000, end: 47_679_999 }, + { code: "2908101", start: 47_680_000, end: 47_689_999 }, + { code: "2909109", start: 47_690_000, end: 47_699_999 }, + { code: "2928208", start: 47_700_000, end: 47_729_999 }, + { code: "2906105", start: 47_730_000, end: 47_739_999 }, + { code: "2930303", start: 47_740_000, end: 47_749_999 }, + { code: "2904407", start: 47_750_000, end: 47_759_999 }, + { code: "2930907", start: 47_760_000, end: 47_799_999 }, + { code: "2903201", start: 47_800_001, end: 47_819_999 }, + { code: "2928901", start: 47_820_000, end: 47_829_999 }, + { code: "2902500", start: 47_830_000, end: 47_844_999 }, + { code: "2907400", start: 47_845_000, end: 47_849_999 }, + { code: "2919553", start: 47_850_000, end: 47_859_999 }, + { code: "2909406", start: 47_900_000, end: 47_939_999 }, + { code: "2933455", start: 47_940_000, end: 47_949_999 }, + { code: "2909703", start: 47_950_000, end: 47_959_999 }, + { code: "2901403", start: 47_960_000, end: 47_969_999 }, + { code: "2926202", start: 47_970_000, end: 47_989_999 }, + { code: "2911105", start: 47_990_000, end: 47_999_999 }, + { code: "2900702", start: 48_000_001, end: 48_107_999 }, + { code: "2902054", start: 48_108_000, end: 48_109_999 }, + { code: "2907509", start: 48_110_000, end: 48_119_999 }, + { code: "2925204", start: 48_120_000, end: 48_129_999 }, + { code: "2902203", start: 48_130_000, end: 48_139_999 }, + { code: "2924108", start: 48_140_000, end: 48_149_999 }, + { code: "2923308", start: 48_150_000, end: 48_169_999 }, + { code: "2900405", start: 48_170_000, end: 48_179_999 }, + { code: "2910503", start: 48_180_000, end: 48_279_999 }, + { code: "2921005", start: 48_280_000, end: 48_289_999 }, + { code: "2915908", start: 48_290_000, end: 48_299_999 }, + { code: "2908606", start: 48_300_000, end: 48_309_999 }, + { code: "2917904", start: 48_310_000, end: 48_329_999 }, + { code: "2927002", start: 48_330_000, end: 48_349_999 }, + { code: "2901908", start: 48_350_000, end: 48_359_999 }, + { code: "2900306", start: 48_360_000, end: 48_369_999 }, + { code: "2910602", start: 48_370_000, end: 48_389_999 }, + { code: "2907004", start: 48_390_000, end: 48_399_999 }, + { code: "2926608", start: 48_400_000, end: 48_404_999 }, + { code: "2902658", start: 48_405_000, end: 48_409_999 }, + { code: "2907806", start: 48_410_000, end: 48_414_999 }, + { code: "2910750", start: 48_415_000, end: 48_419_999 }, + { code: "2901601", start: 48_420_000, end: 48_429_999 }, + { code: "2923803", start: 48_430_000, end: 48_434_999 }, + { code: "2900355", start: 48_435_000, end: 48_439_999 }, + { code: "2926509", start: 48_440_000, end: 48_444_999 }, + { code: "2911857", start: 48_445_000, end: 48_449_999 }, + { code: "2907905", start: 48_450_000, end: 48_454_999 }, + { code: "2923050", start: 48_455_000, end: 48_459_999 }, + { code: "2922904", start: 48_460_000, end: 48_469_999 }, + { code: "2923100", start: 48_470_000, end: 48_474_999 }, + { code: "2916500", start: 48_475_000, end: 48_479_999 }, + { code: "2909604", start: 48_480_000, end: 48_484_999 }, + { code: "2929701", start: 48_485_000, end: 48_489_999 }, + { code: "2913705", start: 48_490_000, end: 48_499_999 }, + { code: "2910701", start: 48_500_000, end: 48_519_999 }, + { code: "2906824", start: 48_520_000, end: 48_539_999 }, + { code: "2918100", start: 48_540_000, end: 48_564_999 }, + { code: "2930766", start: 48_565_000, end: 48_569_999 }, + { code: "2927606", start: 48_570_000, end: 48_579_999 }, + { code: "2924207", start: 48_580_000, end: 48_589_999 }, + { code: "2909208", start: 48_590_000, end: 48_599_999 }, + { code: "2924009", start: 48_600_001, end: 48_619_999 }, + { code: "2911402", start: 48_620_000, end: 48_629_999 }, + { code: "2927101", start: 48_630_000, end: 48_649_999 }, + { code: "2919900", start: 48_650_000, end: 48_659_999 }, + { code: "2907707", start: 48_660_000, end: 48_679_999 }, + { code: "2900207", start: 48_680_000, end: 48_699_999 }, + { code: "2930501", start: 48_700_000, end: 48_704_999 }, + { code: "2903276", start: 48_705_000, end: 48_709_999 }, + { code: "2906402", start: 48_710_000, end: 48_719_999 }, + { code: "2919108", start: 48_720_000, end: 48_724_999 }, + { code: "2913309", start: 48_725_000, end: 48_729_999 }, + { code: "2908408", start: 48_730_000, end: 48_749_999 }, + { code: "2926103", start: 48_750_000, end: 48_759_999 }, + { code: "2902104", start: 48_760_000, end: 48_769_999 }, + { code: "2931509", start: 48_770_000, end: 48_779_999 }, + { code: "2903607", start: 48_780_000, end: 48_789_999 }, + { code: "2931905", start: 48_790_000, end: 48_799_999 }, + { code: "2921500", start: 48_800_000, end: 48_829_999 }, + { code: "2925907", start: 48_830_000, end: 48_839_999 }, + { code: "2906808", start: 48_840_000, end: 48_849_999 }, + { code: "2917003", start: 48_850_000, end: 48_859_999 }, + { code: "2925808", start: 48_860_000, end: 48_869_999 }, + { code: "2922656", start: 48_870_000, end: 48_879_999 }, + { code: "2928000", start: 48_880_000, end: 48_889_999 }, + { code: "2933000", start: 48_890_000, end: 48_894_999 }, + { code: "2928950", start: 48_895_000, end: 48_899_999 }, + { code: "2918407", start: 48_900_001, end: 48_924_999 }, + { code: "2930774", start: 48_925_000, end: 48_929_999 }, + { code: "2909901", start: 48_930_000, end: 48_949_999 }, + { code: "2932002", start: 48_950_000, end: 48_959_999 }, + { code: "2917706", start: 48_960_000, end: 48_969_999 }, + { code: "2930105", start: 48_970_000, end: 48_989_999 }, + { code: "2901353", start: 48_990_000, end: 48_999_999 }, + { code: "2800308", start: 49_000_001, end: 49_099_999 }, + { code: "2806701", start: 49_100_000, end: 49_119_999 }, + { code: "2803203", start: 49_120_000, end: 49_129_999 }, + { code: "2805901", start: 49_130_000, end: 49_139_999 }, + { code: "2800605", start: 49_140_000, end: 49_149_999 }, + { code: "2804805", start: 49_150_000, end: 49_169_999 }, + { code: "2803609", start: 49_170_000, end: 49_179_999 }, + { code: "2806602", start: 49_180_000, end: 49_189_999 }, + { code: "2805307", start: 49_190_000, end: 49_199_999 }, + { code: "2802106", start: 49_200_000, end: 49_219_999 }, + { code: "2800407", start: 49_220_000, end: 49_229_999 }, + { code: "2806305", start: 49_230_000, end: 49_249_999 }, + { code: "2802809", start: 49_250_000, end: 49_259_999 }, + { code: "2807600", start: 49_260_000, end: 49_269_999 }, + { code: "2801702", start: 49_270_000, end: 49_279_999 }, + { code: "2807501", start: 49_280_000, end: 49_289_999 }, + { code: "2803005", start: 49_290_000, end: 49_299_999 }, + { code: "2807402", start: 49_300_000, end: 49_319_999 }, + { code: "2805802", start: 49_320_000, end: 49_349_999 }, + { code: "2805109", start: 49_350_000, end: 49_359_999 }, + { code: "2800670", start: 49_360_000, end: 49_389_999 }, + { code: "2806206", start: 49_390_000, end: 49_399_999 }, + { code: "2803500", start: 49_400_000, end: 49_479_999 }, + { code: "2807105", start: 49_480_000, end: 49_489_999 }, + { code: "2805505", start: 49_490_000, end: 49_499_999 }, + { code: "2802908", start: 49_500_001, end: 49_511_999 }, + { code: "2805000", start: 49_512_000, end: 49_513_999 }, + { code: "2802304", start: 49_514_000, end: 49_516_999 }, + { code: "2805208", start: 49_517_000, end: 49_519_999 }, + { code: "2801009", start: 49_520_000, end: 49_524_999 }, + { code: "2806800", start: 49_525_000, end: 49_529_999 }, + { code: "2806008", start: 49_530_000, end: 49_534_999 }, + { code: "2807006", start: 49_535_000, end: 49_539_999 }, + { code: "2804458", start: 49_540_000, end: 49_549_999 }, + { code: "2801405", start: 49_550_000, end: 49_559_999 }, + { code: "2804102", start: 49_560_000, end: 49_564_999 }, + { code: "2803708", start: 49_565_000, end: 49_569_999 }, + { code: "2803906", start: 49_570_000, end: 49_579_999 }, + { code: "2800506", start: 49_580_000, end: 49_599_999 }, + { code: "2804607", start: 49_600_000, end: 49_629_999 }, + { code: "2807204", start: 49_630_000, end: 49_639_999 }, + { code: "2806503", start: 49_640_000, end: 49_649_999 }, + { code: "2802007", start: 49_650_000, end: 49_659_999 }, + { code: "2801900", start: 49_660_000, end: 49_669_999 }, + { code: "2802205", start: 49_670_000, end: 49_679_999 }, + { code: "2804508", start: 49_680_000, end: 49_689_999 }, + { code: "2804201", start: 49_690_000, end: 49_699_999 }, + { code: "2801306", start: 49_700_000, end: 49_739_999 }, + { code: "2801504", start: 49_740_000, end: 49_749_999 }, + { code: "2802502", start: 49_750_000, end: 49_759_999 }, + { code: "2806107", start: 49_760_000, end: 49_769_999 }, + { code: "2804003", start: 49_770_000, end: 49_779_999 }, + { code: "2804300", start: 49_780_000, end: 49_789_999 }, + { code: "2800209", start: 49_790_000, end: 49_799_999 }, + { code: "2805604", start: 49_800_000, end: 49_809_999 }, + { code: "2805406", start: 49_810_000, end: 49_819_999 }, + { code: "2801207", start: 49_820_000, end: 49_829_999 }, + { code: "2802403", start: 49_830_000, end: 49_859_999 }, + { code: "2802601", start: 49_860_000, end: 49_869_999 }, + { code: "2803104", start: 49_870_000, end: 49_879_999 }, + { code: "2801108", start: 49_880_000, end: 49_889_999 }, + { code: "2804706", start: 49_890_000, end: 49_899_999 }, + { code: "2805703", start: 49_900_000, end: 49_909_999 }, + { code: "2807303", start: 49_910_000, end: 49_919_999 }, + { code: "2800100", start: 49_920_000, end: 49_929_999 }, + { code: "2801603", start: 49_930_000, end: 49_939_999 }, + { code: "2803807", start: 49_940_000, end: 49_944_999 }, + { code: "2806909", start: 49_945_000, end: 49_949_999 }, + { code: "2803401", start: 49_950_000, end: 49_959_999 }, + { code: "2803302", start: 49_960_000, end: 49_969_999 }, + { code: "2804904", start: 49_970_000, end: 49_979_999 }, + { code: "2804409", start: 49_980_000, end: 49_984_999 }, + { code: "2806404", start: 49_985_000, end: 49_989_999 }, + { code: "2802700", start: 49_990_000, end: 49_994_999 }, + { code: "2800704", start: 49_995_000, end: 49_999_999 }, + { code: "2611606", start: 50_000_001, end: 52_999_999 }, + { code: "2609600", start: 53_000_001, end: 53_399_999 }, + { code: "2610707", start: 53_400_001, end: 53_499_999 }, + { code: "2600054", start: 53_500_001, end: 53_599_999 }, + { code: "2606804", start: 53_600_001, end: 53_689_999 }, + { code: "2601052", start: 53_690_000, end: 53_699_999 }, + { code: "2607752", start: 53_700_000, end: 53_899_999 }, + { code: "2607604", start: 53_900_000, end: 53_989_999 }, + { code: "2605459", start: 53_990_000, end: 53_999_999 }, + { code: "2607901", start: 54_000_001, end: 54_499_999 }, + { code: "2602902", start: 54_500_001, end: 54_599_999 }, + { code: "2613701", start: 54_700_001, end: 54_749_999 }, + { code: "2603454", start: 54_750_001, end: 54_799_999 }, + { code: "2609402", start: 54_800_000, end: 54_999_999 }, + { code: "2604106", start: 55_000_001, end: 55_119_999 }, + { code: "2611705", start: 55_120_000, end: 55_124_999 }, + { code: "2615409", start: 55_125_000, end: 55_129_999 }, + { code: "2613107", start: 55_130_000, end: 55_139_999 }, + { code: "2614709", start: 55_140_000, end: 55_149_999 }, + { code: "2601706", start: 55_150_001, end: 55_169_999 }, + { code: "2602605", start: 55_170_000, end: 55_179_999 }, + { code: "2608008", start: 55_180_000, end: 55_189_999 }, + { code: "2612505", start: 55_190_001, end: 55_199_999 }, + { code: "2610905", start: 55_200_000, end: 55_239_999 }, + { code: "2611200", start: 55_240_000, end: 55_249_999 }, + { code: "2612406", start: 55_250_000, end: 55_259_999 }, + { code: "2600609", start: 55_260_000, end: 55_269_999 }, + { code: "2616001", start: 55_270_000, end: 55_279_999 }, + { code: "2610806", start: 55_280_000, end: 55_289_999 }, + { code: "2606002", start: 55_290_001, end: 55_304_999 }, + { code: "2615102", start: 55_305_000, end: 55_309_999 }, + { code: "2610103", start: 55_310_000, end: 55_314_999 }, + { code: "2604700", start: 55_315_000, end: 55_319_999 }, + { code: "2608602", start: 55_320_000, end: 55_324_999 }, + { code: "2602407", start: 55_325_000, end: 55_329_999 }, + { code: "2602100", start: 55_330_000, end: 55_339_999 }, + { code: "2600500", start: 55_340_000, end: 55_344_999 }, + { code: "2606507", start: 55_345_000, end: 55_349_999 }, + { code: "2612307", start: 55_350_000, end: 55_354_999 }, + { code: "2610301", start: 55_355_000, end: 55_359_999 }, + { code: "2603207", start: 55_360_000, end: 55_364_999 }, + { code: "2603801", start: 55_365_000, end: 55_369_999 }, + { code: "2613008", start: 55_370_000, end: 55_374_999 }, + { code: "2603306", start: 55_375_000, end: 55_379_999 }, + { code: "2603108", start: 55_380_000, end: 55_384_999 }, + { code: "2608800", start: 55_385_000, end: 55_389_999 }, + { code: "2606705", start: 55_390_000, end: 55_394_999 }, + { code: "2608305", start: 55_395_000, end: 55_397_999 }, + { code: "2608255", start: 55_398_000, end: 55_399_999 }, + { code: "2604205", start: 55_400_000, end: 55_404_999 }, + { code: "2609204", start: 55_405_000, end: 55_408_999 }, + { code: "2607950", start: 55_409_000, end: 55_409_999 }, + { code: "2612901", start: 55_410_000, end: 55_414_999 }, + { code: "2611507", start: 55_415_000, end: 55_419_999 }, + { code: "2603702", start: 55_420_000, end: 55_429_999 }, + { code: "2601003", start: 55_430_000, end: 55_434_999 }, + { code: "2613206", start: 55_435_000, end: 55_439_999 }, + { code: "2601508", start: 55_440_000, end: 55_449_999 }, + { code: "2608701", start: 55_450_000, end: 55_459_999 }, + { code: "2605004", start: 55_460_000, end: 55_469_999 }, + { code: "2610202", start: 55_470_000, end: 55_479_999 }, + { code: "2608404", start: 55_480_000, end: 55_489_999 }, + { code: "2600807", start: 55_490_000, end: 55_494_999 }, + { code: "2600302", start: 55_495_000, end: 55_499_999 }, + { code: "2605202", start: 55_500_000, end: 55_509_999 }, + { code: "2611408", start: 55_510_000, end: 55_514_999 }, + { code: "2600906", start: 55_515_000, end: 55_519_999 }, + { code: "2611804", start: 55_520_000, end: 55_524_999 }, + { code: "2604809", start: 55_525_000, end: 55_529_999 }, + { code: "2605905", start: 55_530_000, end: 55_534_999 }, + { code: "2608206", start: 55_535_000, end: 55_539_999 }, + { code: "2610004", start: 55_540_000, end: 55_549_999 }, + { code: "2600401", start: 55_550_000, end: 55_554_999 }, + { code: "2616506", start: 55_555_000, end: 55_559_999 }, + { code: "2601409", start: 55_560_000, end: 55_564_999 }, + { code: "2613404", start: 55_565_000, end: 55_569_999 }, + { code: "2611903", start: 55_570_000, end: 55_577_999 }, + { code: "2614857", start: 55_578_000, end: 55_579_999 }, + { code: "2614204", start: 55_580_000, end: 55_589_999 }, + { code: "2607208", start: 55_590_000, end: 55_599_999 }, + { code: "2616407", start: 55_600_001, end: 55_619_999 }, + { code: "2606101", start: 55_620_000, end: 55_629_999 }, + { code: "2611309", start: 55_630_000, end: 55_635_999 }, + { code: "2604502", start: 55_636_000, end: 55_639_999 }, + { code: "2606408", start: 55_640_001, end: 55_649_999 }, + { code: "2610509", start: 55_650_000, end: 55_654_999 }, + { code: "2604908", start: 55_655_000, end: 55_659_999 }, + { code: "2601904", start: 55_660_000, end: 55_664_999 }, + { code: "2603504", start: 55_665_000, end: 55_669_999 }, + { code: "2613305", start: 55_670_000, end: 55_674_999 }, + { code: "2612109", start: 55_675_000, end: 55_679_999 }, + { code: "2602308", start: 55_680_000, end: 55_689_999 }, + { code: "2601300", start: 55_690_000, end: 55_694_999 }, + { code: "2612000", start: 55_695_000, end: 55_699_999 }, + { code: "2608909", start: 55_700_000, end: 55_714_999 }, + { code: "2605400", start: 55_715_000, end: 55_719_999 }, + { code: "2608107", start: 55_720_000, end: 55_729_999 }, + { code: "2602209", start: 55_730_000, end: 55_739_999 }, + { code: "2609105", start: 55_740_000, end: 55_744_999 }, + { code: "2609709", start: 55_745_000, end: 55_749_999 }, + { code: "2614501", start: 55_750_000, end: 55_754_999 }, + { code: "2604155", start: 55_755_000, end: 55_759_999 }, + { code: "2616183", start: 55_760_000, end: 55_764_999 }, + { code: "2612703", start: 55_765_000, end: 55_769_999 }, + { code: "2616209", start: 55_770_000, end: 55_779_999 }, + { code: "2605806", start: 55_780_000, end: 55_789_999 }, + { code: "2615003", start: 55_790_000, end: 55_799_999 }, + { code: "2609501", start: 55_800_000, end: 55_804_999 }, + { code: "2615508", start: 55_805_000, end: 55_809_999 }, + { code: "2604007", start: 55_810_001, end: 55_819_999 }, + { code: "2608453", start: 55_820_000, end: 55_824_999 }, + { code: "2610608", start: 55_825_000, end: 55_834_999 }, + { code: "2604403", start: 55_835_000, end: 55_839_999 }, + { code: "2608503", start: 55_840_000, end: 55_844_999 }, + { code: "2602704", start: 55_845_000, end: 55_849_999 }, + { code: "2616308", start: 55_850_000, end: 55_859_999 }, + { code: "2613800", start: 55_860_000, end: 55_864_999 }, + { code: "2609006", start: 55_865_000, end: 55_869_999 }, + { code: "2615300", start: 55_870_000, end: 55_879_999 }, + { code: "2605509", start: 55_880_000, end: 55_889_999 }, + { code: "2600708", start: 55_890_000, end: 55_899_999 }, + { code: "2606200", start: 55_900_000, end: 55_919_999 }, + { code: "2607653", start: 55_920_000, end: 55_929_999 }, + { code: "2603603", start: 55_930_000, end: 55_939_999 }, + { code: "2604601", start: 55_940_000, end: 55_949_999 }, + { code: "2607802", start: 55_950_000, end: 55_999_999 }, + { code: "2612208", start: 56_000_000, end: 56_119_999 }, + { code: "2616100", start: 56_120_000, end: 56_129_999 }, + { code: "2604304", start: 56_130_000, end: 56_139_999 }, + { code: "2614006", start: 56_140_000, end: 56_149_999 }, + { code: "2614303", start: 56_150_000, end: 56_159_999 }, + { code: "2606309", start: 56_160_000, end: 56_162_999 }, + { code: "2610400", start: 56_163_000, end: 56_169_999 }, + { code: "2609808", start: 56_170_000, end: 56_179_999 }, + { code: "2603009", start: 56_180_000, end: 56_189_999 }, + { code: "2615201", start: 56_190_000, end: 56_199_999 }, + { code: "2609907", start: 56_200_000, end: 56_209_999 }, + { code: "2612554", start: 56_210_000, end: 56_214_999 }, + { code: "2612455", start: 56_215_000, end: 56_219_999 }, + { code: "2602001", start: 56_220_000, end: 56_229_999 }, + { code: "2605301", start: 56_230_000, end: 56_249_999 }, + { code: "2615607", start: 56_250_000, end: 56_259_999 }, + { code: "2607307", start: 56_260_000, end: 56_279_999 }, + { code: "2601102", start: 56_280_000, end: 56_299_999 }, + { code: "2611101", start: 56_300_001, end: 56_354_999 }, + { code: "2605152", start: 56_355_000, end: 56_359_999 }, + { code: "2600203", start: 56_360_000, end: 56_379_999 }, + { code: "2612604", start: 56_380_000, end: 56_394_999 }, + { code: "2608750", start: 56_395_000, end: 56_399_999 }, + { code: "2605707", start: 56_400_000, end: 56_419_999 }, + { code: "2603926", start: 56_420_000, end: 56_429_999 }, + { code: "2607406", start: 56_430_000, end: 56_439_999 }, + { code: "2601607", start: 56_440_000, end: 56_459_999 }, + { code: "2611002", start: 56_460_000, end: 56_469_999 }, + { code: "2608057", start: 56_470_000, end: 56_479_999 }, + { code: "2614808", start: 56_480_000, end: 56_499_999 }, + { code: "2601201", start: 56_500_001, end: 56_519_999 }, + { code: "2602803", start: 56_520_000, end: 56_539_999 }, + { code: "2615805", start: 56_540_000, end: 56_549_999 }, + { code: "2607505", start: 56_550_000, end: 56_559_999 }, + { code: "2607000", start: 56_560_000, end: 56_564_999 }, + { code: "2609154", start: 56_565_000, end: 56_579_999 }, + { code: "2606606", start: 56_580_000, end: 56_599_999 }, + { code: "2614105", start: 56_600_000, end: 56_639_999 }, + { code: "2605103", start: 56_640_000, end: 56_669_999 }, + { code: "2601805", start: 56_670_000, end: 56_699_999 }, + { code: "2613602", start: 56_700_000, end: 56_719_999 }, + { code: "2607703", start: 56_720_000, end: 56_739_999 }, + { code: "2602506", start: 56_740_000, end: 56_749_999 }, + { code: "2612802", start: 56_750_000, end: 56_759_999 }, + { code: "2615904", start: 56_760_000, end: 56_779_999 }, + { code: "2614600", start: 56_780_000, end: 56_794_999 }, + { code: "2614402", start: 56_795_000, end: 56_799_999 }, + { code: "2600104", start: 56_800_000, end: 56_819_999 }, + { code: "2603900", start: 56_820_000, end: 56_827_999 }, + { code: "2611533", start: 56_828_000, end: 56_829_999 }, + { code: "2607109", start: 56_830_000, end: 56_839_999 }, + { code: "2606903", start: 56_840_000, end: 56_849_999 }, + { code: "2605608", start: 56_850_000, end: 56_869_999 }, + { code: "2615706", start: 56_870_000, end: 56_894_999 }, + { code: "2612471", start: 56_895_000, end: 56_899_999 }, + { code: "2613909", start: 56_900_001, end: 56_929_999 }, + { code: "2603405", start: 56_930_000, end: 56_949_999 }, + { code: "2613503", start: 56_950_000, end: 56_979_999 }, + { code: "2609303", start: 56_980_000, end: 56_999_999 }, + { code: "2704302", start: 57_000_001, end: 57_099_999 }, + { code: "2707701", start: 57_100_000, end: 57_119_999 }, + { code: "2708907", start: 57_120_000, end: 57_129_999 }, + { code: "2707909", start: 57_130_000, end: 57_139_999 }, + { code: "2702207", start: 57_140_000, end: 57_149_999 }, + { code: "2706901", start: 57_150_000, end: 57_159_999 }, + { code: "2704708", start: 57_160_000, end: 57_179_999 }, + { code: "2700607", start: 57_180_000, end: 57_199_999 }, + { code: "2706703", start: 57_200_000, end: 57_209_999 }, + { code: "2706802", start: 57_210_000, end: 57_219_999 }, + { code: "2702702", start: 57_220_000, end: 57_229_999 }, + { code: "2702306", start: 57_230_000, end: 57_239_999 }, + { code: "2708600", start: 57_240_001, end: 57_249_999 }, + { code: "2701407", start: 57_250_000, end: 57_254_999 }, + { code: "2703759", start: 57_255_000, end: 57_256_999 }, + { code: "2707800", start: 57_257_000, end: 57_259_999 }, + { code: "2704203", start: 57_260_000, end: 57_264_999 }, + { code: "2709152", start: 57_265_000, end: 57_269_999 }, + { code: "2704005", start: 57_270_000, end: 57_274_999 }, + { code: "2708808", start: 57_275_000, end: 57_279_999 }, + { code: "2703205", start: 57_280_000, end: 57_289_999 }, + { code: "2707503", start: 57_290_000, end: 57_299_999 }, + { code: "2700300", start: 57_300_001, end: 57_319_999 }, + { code: "2702355", start: 57_320_000, end: 57_324_999 }, + { code: "2702009", start: 57_325_000, end: 57_329_999 }, + { code: "2704104", start: 57_330_000, end: 57_339_999 }, + { code: "2702603", start: 57_340_000, end: 57_349_999 }, + { code: "2701506", start: 57_350_000, end: 57_359_999 }, + { code: "2702900", start: 57_360_000, end: 57_369_999 }, + { code: "2709202", start: 57_370_000, end: 57_379_999 }, + { code: "2708204", start: 57_380_000, end: 57_389_999 }, + { code: "2705903", start: 57_390_000, end: 57_399_999 }, + { code: "2706406", start: 57_400_000, end: 57_409_999 }, + { code: "2706208", start: 57_410_000, end: 57_419_999 }, + { code: "2700706", start: 57_420_000, end: 57_424_999 }, + { code: "2703700", start: 57_425_000, end: 57_429_999 }, + { code: "2703403", start: 57_430_000, end: 57_434_999 }, + { code: "2700904", start: 57_435_000, end: 57_439_999 }, + { code: "2705408", start: 57_440_000, end: 57_441_999 }, + { code: "2705705", start: 57_442_000, end: 57_444_999 }, + { code: "2708402", start: 57_445_000, end: 57_459_999 }, + { code: "2707107", start: 57_460_000, end: 57_469_999 }, + { code: "2705804", start: 57_470_000, end: 57_474_999 }, + { code: "2706422", start: 57_475_000, end: 57_479_999 }, + { code: "2702405", start: 57_480_000, end: 57_489_999 }, + { code: "2700102", start: 57_490_000, end: 57_499_999 }, + { code: "2708006", start: 57_500_000, end: 57_509_999 }, + { code: "2707206", start: 57_510_000, end: 57_514_999 }, + { code: "2708956", start: 57_515_000, end: 57_519_999 }, + { code: "2704609", start: 57_520_000, end: 57_524_999 }, + { code: "2706109", start: 57_525_000, end: 57_529_999 }, + { code: "2701605", start: 57_530_000, end: 57_534_999 }, + { code: "2701803", start: 57_535_000, end: 57_539_999 }, + { code: "2705002", start: 57_540_000, end: 57_544_999 }, + { code: "2703304", start: 57_545_000, end: 57_549_999 }, + { code: "2706000", start: 57_550_000, end: 57_559_999 }, + { code: "2702504", start: 57_560_000, end: 57_569_999 }, + { code: "2701209", start: 57_570_000, end: 57_579_999 }, + { code: "2704401", start: 57_580_000, end: 57_599_999 }, + { code: "2706307", start: 57_600_001, end: 57_614_999 }, + { code: "2705309", start: 57_615_000, end: 57_619_999 }, + { code: "2703106", start: 57_620_000, end: 57_624_999 }, + { code: "2702553", start: 57_625_000, end: 57_629_999 }, + { code: "2700805", start: 57_630_000, end: 57_634_999 }, + { code: "2709004", start: 57_635_000, end: 57_639_999 }, + { code: "2709103", start: 57_640_000, end: 57_659_999 }, + { code: "2700201", start: 57_660_000, end: 57_669_999 }, + { code: "2704807", start: 57_670_000, end: 57_679_999 }, + { code: "2701001", start: 57_680_000, end: 57_689_999 }, + { code: "2700409", start: 57_690_000, end: 57_699_999 }, + { code: "2709400", start: 57_700_000, end: 57_719_999 }, + { code: "2707008", start: 57_720_000, end: 57_729_999 }, + { code: "2704906", start: 57_730_000, end: 57_739_999 }, + { code: "2706604", start: 57_740_000, end: 57_749_999 }, + { code: "2707602", start: 57_750_000, end: 57_759_999 }, + { code: "2701902", start: 57_760_000, end: 57_769_999 }, + { code: "2701308", start: 57_770_000, end: 57_779_999 }, + { code: "2701704", start: 57_780_000, end: 57_799_999 }, + { code: "2709301", start: 57_800_000, end: 57_819_999 }, + { code: "2705507", start: 57_820_000, end: 57_829_999 }, + { code: "2701100", start: 57_830_000, end: 57_839_999 }, + { code: "2708105", start: 57_840_000, end: 57_859_999 }, + { code: "2708303", start: 57_860_000, end: 57_889_999 }, + { code: "2703007", start: 57_890_000, end: 57_899_999 }, + { code: "2707305", start: 57_900_000, end: 57_909_999 }, + { code: "2705101", start: 57_910_000, end: 57_919_999 }, + { code: "2708501", start: 57_920_000, end: 57_924_999 }, + { code: "2700508", start: 57_925_000, end: 57_929_999 }, + { code: "2706505", start: 57_930_000, end: 57_934_999 }, + { code: "2706448", start: 57_935_000, end: 57_939_999 }, + { code: "2708709", start: 57_940_000, end: 57_944_999 }, + { code: "2707404", start: 57_945_000, end: 57_949_999 }, + { code: "2703601", start: 57_950_000, end: 57_954_999 }, + { code: "2704500", start: 57_955_000, end: 57_959_999 }, + { code: "2703502", start: 57_960_000, end: 57_964_999 }, + { code: "2703908", start: 57_965_000, end: 57_967_999 }, + { code: "2701357", start: 57_968_000, end: 57_969_999 }, + { code: "2705606", start: 57_970_000, end: 57_974_999 }, + { code: "2702108", start: 57_975_000, end: 57_979_999 }, + { code: "2703809", start: 57_980_000, end: 57_989_999 }, + { code: "2705200", start: 57_990_000, end: 57_994_999 }, + { code: "2702801", start: 57_995_000, end: 57_999_999 }, + { code: "2507507", start: 58_000_001, end: 58_099_999 }, + { code: "2503209", start: 58_100_001, end: 58_109_999 }, + { code: "2512408", start: 58_115_000, end: 58_116_999 }, + { code: "2508307", start: 58_117_000, end: 58_118_999 }, + { code: "2515104", start: 58_119_000, end: 58_119_999 }, + { code: "2509206", start: 58_120_000, end: 58_122_999 }, + { code: "2502151", start: 58_123_000, end: 58_124_999 }, + { code: "2500403", start: 58_125_000, end: 58_127_999 }, + { code: "2509339", start: 58_128_000, end: 58_134_999 }, + { code: "2506004", start: 58_135_000, end: 58_139_999 }, + { code: "2501203", start: 58_140_000, end: 58_144_999 }, + { code: "2509503", start: 58_145_000, end: 58_149_999 }, + { code: "2512002", start: 58_150_000, end: 58_154_999 }, + { code: "2516102", start: 58_155_000, end: 58_157_999 }, + { code: "2515401", start: 58_158_000, end: 58_159_999 }, + { code: "2510501", start: 58_160_000, end: 58_166_999 }, + { code: "2505006", start: 58_167_000, end: 58_169_999 }, + { code: "2501609", start: 58_170_000, end: 58_172_999 }, + { code: "2505352", start: 58_173_000, end: 58_174_999 }, + { code: "2505105", start: 58_175_000, end: 58_176_999 }, + { code: "2516151", start: 58_177_000, end: 58_177_999 }, + { code: "2510105", start: 58_178_000, end: 58_179_999 }, + { code: "2511103", start: 58_180_000, end: 58_183_999 }, + { code: "2510303", start: 58_184_000, end: 58_186_999 }, + { code: "2511400", start: 58_187_000, end: 58_187_999 }, + { code: "2501534", start: 58_188_000, end: 58_194_999 }, + { code: "2506202", start: 58_195_000, end: 58_199_999 }, + { code: "2506301", start: 58_200_000, end: 58_207_999 }, + { code: "2505204", start: 58_208_000, end: 58_209_999 }, + { code: "2511707", start: 58_210_000, end: 58_212_999 }, + { code: "2511806", start: 58_213_000, end: 58_219_999 }, + { code: "2501500", start: 58_220_000, end: 58_224_999 }, + { code: "2516003", start: 58_225_000, end: 58_227_999 }, + { code: "2505709", start: 58_228_000, end: 58_229_999 }, + { code: "2503506", start: 58_230_000, end: 58_232_999 }, + { code: "2501005", start: 58_233_000, end: 58_234_999 }, + { code: "2512747", start: 58_235_000, end: 58_237_999 }, + { code: "2504157", start: 58_238_000, end: 58_239_999 }, + { code: "2516409", start: 58_240_000, end: 58_249_999 }, + { code: "2508208", start: 58_250_000, end: 58_252_999 }, + { code: "2503605", start: 58_253_000, end: 58_253_999 }, + { code: "2508554", start: 58_254_000, end: 58_254_999 }, + { code: "2501906", start: 58_255_000, end: 58_259_999 }, + { code: "2515609", start: 58_260_000, end: 58_264_999 }, + { code: "2505808", start: 58_265_000, end: 58_267_999 }, + { code: "2515930", start: 58_268_000, end: 58_269_999 }, + { code: "2500809", start: 58_270_000, end: 58_272_999 }, + { code: "2512721", start: 58_273_000, end: 58_274_999 }, + { code: "2507101", start: 58_275_000, end: 58_277_999 }, + { code: "2507309", start: 58_278_000, end: 58_279_999 }, + { code: "2508901", start: 58_280_000, end: 58_286_999 }, + { code: "2504033", start: 58_287_000, end: 58_288_999 }, + { code: "2505238", start: 58_289_000, end: 58_290_999 }, + { code: "2505279", start: 58_291_000, end: 58_291_999 }, + { code: "2509305", start: 58_292_000, end: 58_293_999 }, + { code: "2509057", start: 58_294_000, end: 58_294_999 }, + { code: "2501401", start: 58_295_000, end: 58_296_999 }, + { code: "2512903", start: 58_297_000, end: 58_299_999 }, + { code: "2513703", start: 58_300_001, end: 58_304_999 }, + { code: "2501807", start: 58_305_001, end: 58_309_999 }, + { code: "2508604", start: 58_315_000, end: 58_319_999 }, + { code: "2500601", start: 58_320_000, end: 58_321_999 }, + { code: "2504603", start: 58_322_000, end: 58_323_999 }, + { code: "2511905", start: 58_324_000, end: 58_325_999 }, + { code: "2503001", start: 58_326_000, end: 58_327_999 }, + { code: "2511202", start: 58_328_000, end: 58_329_999 }, + { code: "2507903", start: 58_330_000, end: 58_333_999 }, + { code: "2515005", start: 58_334_000, end: 58_336_999 }, + { code: "2504900", start: 58_337_000, end: 58_337_999 }, + { code: "2511509", start: 58_338_000, end: 58_338_999 }, + { code: "2514453", start: 58_339_000, end: 58_339_999 }, + { code: "2515302", start: 58_340_000, end: 58_341_999 }, + { code: "2515971", start: 58_342_000, end: 58_344_999 }, + { code: "2509107", start: 58_345_000, end: 58_347_999 }, + { code: "2512762", start: 58_348_000, end: 58_349_999 }, + { code: "2503803", start: 58_350_000, end: 58_353_999 }, + { code: "2509800", start: 58_354_000, end: 58_355_999 }, + { code: "2506400", start: 58_356_000, end: 58_359_999 }, + { code: "2506905", start: 58_360_000, end: 58_369_999 }, + { code: "2513109", start: 58_370_000, end: 58_373_999 }, + { code: "2509404", start: 58_375_000, end: 58_377_999 }, + { code: "2507200", start: 58_378_000, end: 58_379_999 }, + { code: "2506806", start: 58_380_000, end: 58_381_999 }, + { code: "2512754", start: 58_382_000, end: 58_384_999 }, + { code: "2515807", start: 58_385_000, end: 58_386_999 }, + { code: "2507606", start: 58_387_000, end: 58_387_999 }, + { code: "2500304", start: 58_388_000, end: 58_389_999 }, + { code: "2500502", start: 58_390_000, end: 58_392_999 }, + { code: "2511608", start: 58_393_000, end: 58_393_999 }, + { code: "2502706", start: 58_394_000, end: 58_394_999 }, + { code: "2515906", start: 58_395_000, end: 58_395_999 }, + { code: "2500908", start: 58_396_000, end: 58_396_999 }, + { code: "2501104", start: 58_397_000, end: 58_397_999 }, + { code: "2512705", start: 58_398_000, end: 58_398_999 }, + { code: "2500577", start: 58_399_000, end: 58_399_999 }, + { code: "2504009", start: 58_400_001, end: 58_449_999 }, + { code: "2502508", start: 58_450_000, end: 58_454_999 }, + { code: "2504355", start: 58_455_000, end: 58_457_999 }, + { code: "2501575", start: 58_458_000, end: 58_459_999 }, + { code: "2500536", start: 58_460_000, end: 58_462_999 }, + { code: "2513158", start: 58_463_000, end: 58_464_999 }, + { code: "2512788", start: 58_465_000, end: 58_469_999 }, + { code: "2512507", start: 58_470_000, end: 58_479_999 }, + { code: "2503100", start: 58_480_000, end: 58_482_999 }, + { code: "2501708", start: 58_483_000, end: 58_484_999 }, + { code: "2513943", start: 58_485_000, end: 58_486_999 }, + { code: "2506103", start: 58_487_000, end: 58_488_999 }, + { code: "2501302", start: 58_489_000, end: 58_491_999 }, + { code: "2506251", start: 58_492_000, end: 58_493_999 }, + { code: "2509909", start: 58_494_000, end: 58_496_999 }, + { code: "2517001", start: 58_497_000, end: 58_499_999 }, + { code: "2509701", start: 58_500_000, end: 58_509_999 }, + { code: "2515203", start: 58_510_000, end: 58_514_999 }, + { code: "2517407", start: 58_515_000, end: 58_519_999 }, + { code: "2514107", start: 58_520_000, end: 58_529_999 }, + { code: "2503902", start: 58_530_000, end: 58_534_999 }, + { code: "2504702", start: 58_535_000, end: 58_539_999 }, + { code: "2516300", start: 58_540_000, end: 58_547_999 }, + { code: "2500734", start: 58_548_000, end: 58_549_999 }, + { code: "2512200", start: 58_550_000, end: 58_559_999 }, + { code: "2510600", start: 58_560_000, end: 58_569_999 }, + { code: "2514800", start: 58_570_000, end: 58_574_999 }, + { code: "2510659", start: 58_575_000, end: 58_579_999 }, + { code: "2515500", start: 58_580_000, end: 58_587_999 }, + { code: "2504850", start: 58_588_000, end: 58_589_999 }, + { code: "2514008", start: 58_590_000, end: 58_594_999 }, + { code: "2504074", start: 58_595_000, end: 58_599_999 }, + { code: "2513406", start: 58_600_000, end: 58_609_999 }, + { code: "2514701", start: 58_610_000, end: 58_619_999 }, + { code: "2517100", start: 58_620_000, end: 58_624_999 }, + { code: "2514909", start: 58_625_000, end: 58_639_999 }, + { code: "2507804", start: 58_640_000, end: 58_649_999 }, + { code: "2513000", start: 58_650_000, end: 58_659_999 }, + { code: "2507705", start: 58_660_000, end: 58_664_999 }, + { code: "2516755", start: 58_665_000, end: 58_669_999 }, + { code: "2506509", start: 58_670_000, end: 58_674_999 }, + { code: "2513851", start: 58_675_000, end: 58_679_999 }, + { code: "2516508", start: 58_680_000, end: 58_684_999 }, + { code: "2501351", start: 58_685_000, end: 58_689_999 }, + { code: "2508505", start: 58_690_000, end: 58_694_999 }, + { code: "2505402", start: 58_695_000, end: 58_697_999 }, + { code: "2503555", start: 58_698_000, end: 58_699_999 }, + { code: "2510808", start: 58_700_001, end: 58_709_999 }, + { code: "2505501", start: 58_710_000, end: 58_712_999 }, + { code: "2508802", start: 58_713_000, end: 58_713_999 }, + { code: "2504504", start: 58_714_000, end: 58_714_999 }, + { code: "2504207", start: 58_715_000, end: 58_719_999 }, + { code: "2513802", start: 58_720_000, end: 58_722_999 }, + { code: "2514404", start: 58_723_000, end: 58_724_999 }, + { code: "2514602", start: 58_725_000, end: 58_729_999 }, + { code: "2503407", start: 58_730_000, end: 58_731_999 }, + { code: "2501153", start: 58_732_000, end: 58_732_999 }, + { code: "2512606", start: 58_733_000, end: 58_733_999 }, + { code: "2510709", start: 58_734_000, end: 58_734_999 }, + { code: "2516706", start: 58_735_000, end: 58_736_999 }, + { code: "2509396", start: 58_737_000, end: 58_739_999 }, + { code: "2508703", start: 58_740_000, end: 58_744_999 }, + { code: "2506707", start: 58_745_000, end: 58_747_999 }, + { code: "2500106", start: 58_748_000, end: 58_749_999 }, + { code: "2508000", start: 58_750_000, end: 58_752_999 }, + { code: "2516607", start: 58_753_000, end: 58_754_999 }, + { code: "2512309", start: 58_755_000, end: 58_757_999 }, + { code: "2514552", start: 58_758_000, end: 58_759_999 }, + { code: "2510402", start: 58_760_000, end: 58_762_999 }, + { code: "2505907", start: 58_763_000, end: 58_764_999 }, + { code: "2511301", start: 58_765_000, end: 58_769_999 }, + { code: "2504801", start: 58_770_000, end: 58_774_999 }, + { code: "2502607", start: 58_775_000, end: 58_777_999 }, + { code: "2500205", start: 58_778_000, end: 58_779_999 }, + { code: "2507002", start: 58_780_000, end: 58_783_999 }, + { code: "2514305", start: 58_784_000, end: 58_789_999 }, + { code: "2511004", start: 58_790_000, end: 58_794_999 }, + { code: "2513604", start: 58_795_000, end: 58_797_999 }, + { code: "2510204", start: 58_798_000, end: 58_799_999 }, + { code: "2516201", start: 58_800_001, end: 58_814_999 }, + { code: "2514206", start: 58_815_000, end: 58_816_999 }, + { code: "2510006", start: 58_817_000, end: 58_817_999 }, + { code: "2513984", start: 58_818_000, end: 58_818_999 }, + { code: "2509156", start: 58_819_000, end: 58_819_999 }, + { code: "2508406", start: 58_820_000, end: 58_821_999 }, + { code: "2517209", start: 58_822_000, end: 58_822_999 }, + { code: "2500775", start: 58_823_000, end: 58_823_999 }, + { code: "2513208", start: 58_824_000, end: 58_829_999 }, + { code: "2507408", start: 58_830_000, end: 58_831_999 }, + { code: "2509370", start: 58_832_000, end: 58_834_999 }, + { code: "2508109", start: 58_835_000, end: 58_839_999 }, + { code: "2512101", start: 58_840_000, end: 58_852_999 }, + { code: "2513968", start: 58_853_000, end: 58_854_999 }, + { code: "2503753", start: 58_855_000, end: 58_856_999 }, + { code: "2513927", start: 58_857_000, end: 58_859_999 }, + { code: "2510907", start: 58_860_000, end: 58_864_999 }, + { code: "2513901", start: 58_865_000, end: 58_869_999 }, + { code: "2512804", start: 58_870_000, end: 58_879_999 }, + { code: "2502904", start: 58_880_000, end: 58_883_999 }, + { code: "2504306", start: 58_884_000, end: 58_886_999 }, + { code: "2502300", start: 58_887_000, end: 58_889_999 }, + { code: "2502805", start: 58_890_000, end: 58_892_999 }, + { code: "2514651", start: 58_893_000, end: 58_894_999 }, + { code: "2502003", start: 58_895_000, end: 58_899_999 }, + { code: "2503704", start: 58_900_000, end: 58_907_999 }, + { code: "2512077", start: 58_908_000, end: 58_909_999 }, + { code: "2500700", start: 58_910_000, end: 58_914_999 }, + { code: "2516904", start: 58_915_000, end: 58_919_999 }, + { code: "2516805", start: 58_920_000, end: 58_921_999 }, + { code: "2502052", start: 58_922_000, end: 58_924_999 }, + { code: "2513307", start: 58_925_000, end: 58_927_999 }, + { code: "2513653", start: 58_928_000, end: 58_929_999 }, + { code: "2502201", start: 58_930_000, end: 58_932_999 }, + { code: "2512036", start: 58_933_000, end: 58_934_999 }, + { code: "2503308", start: 58_935_000, end: 58_939_999 }, + { code: "2514503", start: 58_940_000, end: 58_944_999 }, + { code: "2504108", start: 58_945_000, end: 58_949_999 }, + { code: "2509602", start: 58_950_000, end: 58_954_999 }, + { code: "2515708", start: 58_955_000, end: 58_959_999 }, + { code: "2502409", start: 58_960_000, end: 58_969_999 }, + { code: "2504405", start: 58_970_000, end: 58_977_999 }, + { code: "2513356", start: 58_978_000, end: 58_979_999 }, + { code: "2506608", start: 58_980_000, end: 58_984_999 }, + { code: "2513505", start: 58_985_000, end: 58_989_999 }, + { code: "2505303", start: 58_990_000, end: 58_992_999 }, + { code: "2502102", start: 58_993_000, end: 58_993_999 }, + { code: "2505600", start: 58_994_000, end: 58_994_999 }, + { code: "2509008", start: 58_995_000, end: 58_996_999 }, + { code: "2408102", start: 59_000_001, end: 59_139_999 }, + { code: "2403251", start: 59_140_001, end: 59_161_999 }, + { code: "2412203", start: 59_162_000, end: 59_163_999 }, + { code: "2408201", start: 59_164_000, end: 59_167_999 }, + { code: "2413201", start: 59_168_000, end: 59_169_999 }, + { code: "2401206", start: 59_170_000, end: 59_172_999 }, + { code: "2404200", start: 59_173_000, end: 59_177_999 }, + { code: "2414209", start: 59_178_000, end: 59_179_999 }, + { code: "2403509", start: 59_180_000, end: 59_181_999 }, + { code: "2407807", start: 59_182_000, end: 59_183_999 }, + { code: "2414803", start: 59_184_000, end: 59_184_999 }, + { code: "2414704", start: 59_185_000, end: 59_186_999 }, + { code: "2406155", start: 59_188_000, end: 59_189_999 }, + { code: "2402204", start: 59_190_000, end: 59_191_999 }, + { code: "2415008", start: 59_192_000, end: 59_193_999 }, + { code: "2401404", start: 59_194_000, end: 59_195_999 }, + { code: "2409803", start: 59_196_000, end: 59_197_999 }, + { code: "2407708", start: 59_198_000, end: 59_199_999 }, + { code: "2411205", start: 59_200_000, end: 59_209_999 }, + { code: "2411700", start: 59_210_000, end: 59_212_999 }, + { code: "2405405", start: 59_213_000, end: 59_213_999 }, + { code: "2413300", start: 59_214_000, end: 59_214_999 }, + { code: "2408300", start: 59_215_000, end: 59_216_999 }, + { code: "2407906", start: 59_217_000, end: 59_217_999 }, + { code: "2409100", start: 59_218_000, end: 59_218_999 }, + { code: "2401800", start: 59_219_000, end: 59_219_999 }, + { code: "2402808", start: 59_220_000, end: 59_224_999 }, + { code: "2405009", start: 59_225_000, end: 59_226_999 }, + { code: "2406205", start: 59_227_000, end: 59_229_999 }, + { code: "2402105", start: 59_230_000, end: 59_234_999 }, + { code: "2406809", start: 59_235_000, end: 59_239_999 }, + { code: "2414001", start: 59_240_000, end: 59_243_999 }, + { code: "2406304", start: 59_244_000, end: 59_244_999 }, + { code: "2410306", start: 59_245_000, end: 59_246_999 }, + { code: "2406601", start: 59_247_000, end: 59_249_999 }, + { code: "2413102", start: 59_250_000, end: 59_254_999 }, + { code: "2411502", start: 59_255_000, end: 59_257_999 }, + { code: "2413508", start: 59_258_000, end: 59_258_999 }, + { code: "2409209", start: 59_259_000, end: 59_259_999 }, + { code: "2405306", start: 59_260_000, end: 59_269_999 }, + { code: "2401701", start: 59_270_000, end: 59_274_999 }, + { code: "2412302", start: 59_275_000, end: 59_279_999 }, + { code: "2407104", start: 59_280_000, end: 59_289_999 }, + { code: "2412005", start: 59_290_001, end: 59_299_999 }, + { code: "2402006", start: 59_300_000, end: 59_309_999 }, + { code: "2412104", start: 59_310_000, end: 59_314_999 }, + { code: "2404804", start: 59_315_000, end: 59_317_999 }, + { code: "2413409", start: 59_318_000, end: 59_319_999 }, + { code: "2414308", start: 59_320_000, end: 59_323_999 }, + { code: "2405603", start: 59_324_000, end: 59_326_999 }, + { code: "2411809", start: 59_327_000, end: 59_329_999 }, + { code: "2406106", start: 59_330_000, end: 59_334_999 }, + { code: "2403806", start: 59_335_000, end: 59_337_999 }, + { code: "2414159", start: 59_338_000, end: 59_339_999 }, + { code: "2413003", start: 59_340_000, end: 59_342_999 }, + { code: "2405702", start: 59_343_000, end: 59_346_999 }, + { code: "2408508", start: 59_347_000, end: 59_349_999 }, + { code: "2411429", start: 59_350_000, end: 59_354_999 }, + { code: "2403400", start: 59_355_000, end: 59_359_999 }, + { code: "2408904", start: 59_360_000, end: 59_369_999 }, + { code: "2400109", start: 59_370_000, end: 59_373_999 }, + { code: "2402402", start: 59_374_000, end: 59_374_999 }, + { code: "2403004", start: 59_375_000, end: 59_377_999 }, + { code: "2412401", start: 59_378_000, end: 59_379_999 }, + { code: "2403103", start: 59_380_000, end: 59_389_999 }, + { code: "2406502", start: 59_390_000, end: 59_394_999 }, + { code: "2402709", start: 59_395_000, end: 59_399_999 }, + { code: "2412906", start: 59_400_000, end: 59_409_999 }, + { code: "2401503", start: 59_410_000, end: 59_419_999 }, + { code: "2411106", start: 59_420_000, end: 59_429_999 }, + { code: "2406403", start: 59_430_000, end: 59_439_999 }, + { code: "2413706", start: 59_440_000, end: 59_459_999 }, + { code: "2412609", start: 59_460_000, end: 59_463_999 }, + { code: "2409332", start: 59_464_000, end: 59_469_999 }, + { code: "2410900", start: 59_470_000, end: 59_479_999 }, + { code: "2412708", start: 59_480_000, end: 59_489_999 }, + { code: "2404606", start: 59_490_000, end: 59_499_999 }, + { code: "2407203", start: 59_500_000, end: 59_503_999 }, + { code: "2409902", start: 59_504_000, end: 59_506_999 }, + { code: "2400703", start: 59_507_000, end: 59_507_999 }, + { code: "2404705", start: 59_508_000, end: 59_509_999 }, + { code: "2400307", start: 59_510_000, end: 59_512_999 }, + { code: "2404853", start: 59_513_000, end: 59_514_999 }, + { code: "2400802", start: 59_515_000, end: 59_516_999 }, + { code: "2403756", start: 59_517_000, end: 59_517_999 }, + { code: "2412807", start: 59_518_000, end: 59_519_999 }, + { code: "2411403", start: 59_520_000, end: 59_527_999 }, + { code: "2401651", start: 59_528_000, end: 59_529_999 }, + { code: "2409704", start: 59_530_000, end: 59_534_999 }, + { code: "2406700", start: 59_535_000, end: 59_539_999 }, + { code: "2401909", start: 59_540_000, end: 59_543_999 }, + { code: "2405504", start: 59_544_000, end: 59_546_999 }, + { code: "2409605", start: 59_547_000, end: 59_549_999 }, + { code: "2405801", start: 59_550_000, end: 59_554_999 }, + { code: "2401602", start: 59_555_000, end: 59_559_999 }, + { code: "2410108", start: 59_560_000, end: 59_564_999 }, + { code: "2413904", start: 59_565_000, end: 59_569_999 }, + { code: "2402600", start: 59_570_000, end: 59_574_999 }, + { code: "2403608", start: 59_575_000, end: 59_577_999 }, + { code: "2408953", start: 59_578_000, end: 59_579_999 }, + { code: "2407500", start: 59_580_000, end: 59_581_999 }, + { code: "2410405", start: 59_582_000, end: 59_583_999 }, + { code: "2414407", start: 59_584_000, end: 59_584_999 }, + { code: "2412559", start: 59_585_000, end: 59_585_999 }, + { code: "2408805", start: 59_586_000, end: 59_587_999 }, + { code: "2409506", start: 59_588_000, end: 59_589_999 }, + { code: "2411601", start: 59_590_000, end: 59_591_999 }, + { code: "2401859", start: 59_592_000, end: 59_593_999 }, + { code: "2405108", start: 59_594_000, end: 59_595_999 }, + { code: "2404101", start: 59_596_000, end: 59_597_999 }, + { code: "2404507", start: 59_598_000, end: 59_599_999 }, + { code: "2408003", start: 59_600_001, end: 59_649_999 }, + { code: "2400208", start: 59_650_000, end: 59_654_999 }, + { code: "2401107", start: 59_655_000, end: 59_659_999 }, + { code: "2408706", start: 59_660_000, end: 59_662_999 }, + { code: "2413359", start: 59_663_000, end: 59_664_999 }, + { code: "2402501", start: 59_665_000, end: 59_667_999 }, + { code: "2410256", start: 59_668_000, end: 59_669_999 }, + { code: "2414605", start: 59_670_000, end: 59_674_999 }, + { code: "2404408", start: 59_675_000, end: 59_677_999 }, + { code: "2411056", start: 59_678_000, end: 59_679_999 }, + { code: "2401305", start: 59_680_000, end: 59_684_999 }, + { code: "2414456", start: 59_685_000, end: 59_689_999 }, + { code: "2405207", start: 59_690_000, end: 59_694_999 }, + { code: "2401453", start: 59_695_000, end: 59_699_999 }, + { code: "2401008", start: 59_700_000, end: 59_729_999 }, + { code: "2408409", start: 59_730_000, end: 59_739_999 }, + { code: "2410603", start: 59_740_000, end: 59_759_999 }, + { code: "2400604", start: 59_760_000, end: 59_769_999 }, + { code: "2409308", start: 59_770_000, end: 59_774_999 }, + { code: "2407609", start: 59_775_000, end: 59_779_999 }, + { code: "2402303", start: 59_780_000, end: 59_789_999 }, + { code: "2404309", start: 59_790_000, end: 59_794_999 }, + { code: "2403707", start: 59_795_000, end: 59_799_999 }, + { code: "2407401", start: 59_800_000, end: 59_804_999 }, + { code: "2406908", start: 59_805_000, end: 59_807_999 }, + { code: "2413557", start: 59_808_000, end: 59_809_999 }, + { code: "2410207", start: 59_810_000, end: 59_814_999 }, + { code: "2414902", start: 59_815_000, end: 59_819_999 }, + { code: "2410702", start: 59_820_000, end: 59_829_999 }, + { code: "2411007", start: 59_830_000, end: 59_839_999 }, + { code: "2413805", start: 59_840_000, end: 59_854_999 }, + { code: "2404903", start: 59_855_000, end: 59_855_999 }, + { code: "2413607", start: 59_856_000, end: 59_864_999 }, + { code: "2414506", start: 59_865_000, end: 59_869_999 }, + { code: "2400901", start: 59_870_000, end: 59_879_999 }, + { code: "2405900", start: 59_880_000, end: 59_889_999 }, + { code: "2404002", start: 59_890_000, end: 59_899_999 }, + { code: "2409407", start: 59_900_000, end: 59_901_999 }, + { code: "2403905", start: 59_902_000, end: 59_904_999 }, + { code: "2403301", start: 59_905_000, end: 59_907_999 }, + { code: "2411908", start: 59_908_000, end: 59_909_999 }, + { code: "2403202", start: 59_910_000, end: 59_919_999 }, + { code: "2412500", start: 59_920_000, end: 59_924_999 }, + { code: "2414753", start: 59_925_000, end: 59_929_999 }, + { code: "2402907", start: 59_930_000, end: 59_939_999 }, + { code: "2407005", start: 59_940_000, end: 59_944_999 }, + { code: "2407252", start: 59_945_000, end: 59_949_999 }, + { code: "2408607", start: 59_950_000, end: 59_954_999 }, + { code: "2414100", start: 59_955_000, end: 59_959_999 }, + { code: "2410009", start: 59_960_000, end: 59_964_999 }, + { code: "2400505", start: 59_965_000, end: 59_969_999 }, + { code: "2407302", start: 59_970_000, end: 59_979_999 }, + { code: "2406007", start: 59_980_000, end: 59_986_999 }, + { code: "2410801", start: 59_987_000, end: 59_989_999 }, + { code: "2410504", start: 59_990_000, end: 59_994_999 }, + { code: "2400406", start: 59_995_000, end: 59_999_999 }, + { code: "2304400", start: 60_000_001, end: 61_599_999 }, + { code: "2303709", start: 61_600_001, end: 61_699_999 }, + { code: "2301000", start: 61_700_000, end: 61_759_999 }, + { code: "2304285", start: 61_760_000, end: 61_799_999 }, + { code: "2309706", start: 61_800_001, end: 61_879_999 }, + { code: "2306256", start: 61_880_000, end: 61_889_999 }, + { code: "2304954", start: 61_890_000, end: 61_899_999 }, + { code: "2307650", start: 61_900_001, end: 61_939_999 }, + { code: "2307700", start: 61_940_001, end: 61_999_999 }, + { code: "2312908", start: 62_000_001, end: 62_114_999 }, + { code: "2304350", start: 62_115_000, end: 62_119_999 }, + { code: "2300507", start: 62_120_000, end: 62_129_999 }, + { code: "2308203", start: 62_130_000, end: 62_139_999 }, + { code: "2308005", start: 62_140_000, end: 62_149_999 }, + { code: "2312007", start: 62_150_000, end: 62_159_999 }, + { code: "2304004", start: 62_160_000, end: 62_169_999 }, + { code: "2309003", start: 62_170_000, end: 62_179_999 }, + { code: "2309904", start: 62_180_000, end: 62_183_999 }, + { code: "2303105", start: 62_184_000, end: 62_189_999 }, + { code: "2304905", start: 62_190_000, end: 62_199_999 }, + { code: "2309300", start: 62_200_000, end: 62_209_999 }, + { code: "2301257", start: 62_210_000, end: 62_214_999 }, + { code: "2305654", start: 62_215_000, end: 62_219_999 }, + { code: "2311009", start: 62_220_000, end: 62_229_999 }, + { code: "2305902", start: 62_230_000, end: 62_249_999 }, + { code: "2305803", start: 62_250_000, end: 62_254_999 }, + { code: "2310951", start: 62_255_000, end: 62_259_999 }, + { code: "2311702", start: 62_260_000, end: 62_264_999 }, + { code: "2313955", start: 62_265_000, end: 62_269_999 }, + { code: "2305209", start: 62_270_000, end: 62_279_999 }, + { code: "2312205", start: 62_280_000, end: 62_296_999 }, + { code: "2303659", start: 62_297_000, end: 62_299_999 }, + { code: "2314102", start: 62_300_000, end: 62_319_999 }, + { code: "2313401", start: 62_320_000, end: 62_339_999 }, + { code: "2304509", start: 62_340_000, end: 62_349_999 }, + { code: "2313609", start: 62_350_000, end: 62_359_999 }, + { code: "2305308", start: 62_360_000, end: 62_364_999 }, + { code: "2304657", start: 62_365_000, end: 62_369_999 }, + { code: "2312304", start: 62_370_000, end: 62_374_999 }, + { code: "2303402", start: 62_375_000, end: 62_379_999 }, + { code: "2305001", start: 62_380_000, end: 62_389_999 }, + { code: "2304236", start: 62_390_000, end: 62_399_999 }, + { code: "2302602", start: 62_400_000, end: 62_409_999 }, + { code: "2302057", start: 62_410_000, end: 62_419_999 }, + { code: "2303907", start: 62_420_000, end: 62_429_999 }, + { code: "2304707", start: 62_430_000, end: 62_449_999 }, + { code: "2307908", start: 62_450_000, end: 62_459_999 }, + { code: "2313906", start: 62_460_000, end: 62_469_999 }, + { code: "2312809", start: 62_470_000, end: 62_479_999 }, + { code: "2308807", start: 62_480_000, end: 62_499_999 }, + { code: "2306405", start: 62_500_000, end: 62_529_999 }, + { code: "2308377", start: 62_530_000, end: 62_539_999 }, + { code: "2300754", start: 62_540_000, end: 62_549_999 }, + { code: "2308906", start: 62_550_000, end: 62_559_999 }, + { code: "2307809", start: 62_560_000, end: 62_569_999 }, + { code: "2302305", start: 62_570_000, end: 62_579_999 }, + { code: "2300200", start: 62_580_000, end: 62_589_999 }, + { code: "2306553", start: 62_590_000, end: 62_594_999 }, + { code: "2304251", start: 62_595_000, end: 62_597_999 }, + { code: "2307254", start: 62_598_000, end: 62_599_999 }, + { code: "2306306", start: 62_600_000, end: 62_609_999 }, + { code: "2313351", start: 62_610_000, end: 62_619_999 }, + { code: "2306108", start: 62_620_000, end: 62_629_999 }, + { code: "2300903", start: 62_630_000, end: 62_639_999 }, + { code: "2310704", start: 62_640_000, end: 62_649_999 }, + { code: "2313807", start: 62_650_000, end: 62_654_999 }, + { code: "2313559", start: 62_655_000, end: 62_659_999 }, + { code: "2313757", start: 62_660_000, end: 62_664_999 }, + { code: "2312601", start: 62_665_000, end: 62_669_999 }, + { code: "2312403", start: 62_670_000, end: 62_679_999 }, + { code: "2310209", start: 62_680_000, end: 62_684_999 }, + { code: "2310258", start: 62_685_000, end: 62_689_999 }, + { code: "2313500", start: 62_690_000, end: 62_699_999 }, + { code: "2302800", start: 62_700_000, end: 62_719_999 }, + { code: "2306603", start: 62_720_000, end: 62_729_999 }, + { code: "2303006", start: 62_730_000, end: 62_735_999 }, + { code: "2310407", start: 62_736_000, end: 62_737_999 }, + { code: "2304608", start: 62_738_000, end: 62_739_999 }, + { code: "2306504", start: 62_740_000, end: 62_747_999 }, + { code: "2302909", start: 62_748_000, end: 62_749_999 }, + { code: "2301208", start: 62_750_000, end: 62_754_999 }, + { code: "2309458", start: 62_755_000, end: 62_759_999 }, + { code: "2302107", start: 62_760_000, end: 62_761_999 }, + { code: "2301406", start: 62_762_000, end: 62_763_999 }, + { code: "2309102", start: 62_764_000, end: 62_765_999 }, + { code: "2305100", start: 62_766_000, end: 62_769_999 }, + { code: "2309805", start: 62_770_000, end: 62_779_999 }, + { code: "2310100", start: 62_780_000, end: 62_784_999 }, + { code: "2300150", start: 62_785_000, end: 62_789_999 }, + { code: "2311603", start: 62_790_000, end: 62_794_999 }, + { code: "2301950", start: 62_795_000, end: 62_799_999 }, + { code: "2301109", start: 62_800_000, end: 62_809_999 }, + { code: "2305357", start: 62_810_000, end: 62_814_999 }, + { code: "2304459", start: 62_815_000, end: 62_819_999 }, + { code: "2306207", start: 62_820_000, end: 62_822_999 }, + { code: "2307007", start: 62_823_000, end: 62_839_999 }, + { code: "2302206", start: 62_840_000, end: 62_849_999 }, + { code: "2303501", start: 62_850_000, end: 62_859_999 }, + { code: "2310852", start: 62_860_000, end: 62_869_999 }, + { code: "2309607", start: 62_870_000, end: 62_874_999 }, + { code: "2303956", start: 62_875_000, end: 62_879_999 }, + { code: "2305233", start: 62_880_001, end: 62_899_999 }, + { code: "2311801", start: 62_900_000, end: 62_909_999 }, + { code: "2310001", start: 62_910_000, end: 62_919_999 }, + { code: "2311504", start: 62_920_000, end: 62_929_999 }, + { code: "2307601", start: 62_930_000, end: 62_939_999 }, + { code: "2308708", start: 62_940_000, end: 62_954_999 }, + { code: "2305332", start: 62_955_000, end: 62_959_999 }, + { code: "2313104", start: 62_960_000, end: 62_964_999 }, + { code: "2312502", start: 62_965_000, end: 62_969_999 }, + { code: "2300705", start: 62_970_000, end: 62_979_999 }, + { code: "2306009", start: 62_980_000, end: 62_989_999 }, + { code: "2311231", start: 62_990_000, end: 62_999_999 }, + { code: "2307304", start: 63_000_001, end: 63_099_999 }, + { code: "2304202", start: 63_100_001, end: 63_139_999 }, + { code: "2301604", start: 63_140_000, end: 63_144_999 }, + { code: "2313252", start: 63_145_000, end: 63_149_999 }, + { code: "2302701", start: 63_150_000, end: 63_154_999 }, + { code: "2311959", start: 63_155_000, end: 63_159_999 }, + { code: "2311207", start: 63_160_000, end: 63_164_999 }, + { code: "2309201", start: 63_165_000, end: 63_169_999 }, + { code: "2301307", start: 63_170_000, end: 63_179_999 }, + { code: "2301901", start: 63_180_000, end: 63_184_999 }, + { code: "2304301", start: 63_185_000, end: 63_189_999 }, + { code: "2312106", start: 63_190_000, end: 63_194_999 }, + { code: "2300606", start: 63_195_000, end: 63_199_999 }, + { code: "2308401", start: 63_200_000, end: 63_209_999 }, + { code: "2308104", start: 63_210_000, end: 63_219_999 }, + { code: "2303204", start: 63_220_000, end: 63_229_999 }, + { code: "2304806", start: 63_230_000, end: 63_239_999 }, + { code: "2300101", start: 63_240_000, end: 63_249_999 }, + { code: "2308302", start: 63_250_000, end: 63_259_999 }, + { code: "2302503", start: 63_260_000, end: 63_269_999 }, + { code: "2311108", start: 63_270_000, end: 63_274_999 }, + { code: "2307205", start: 63_275_000, end: 63_279_999 }, + { code: "2310605", start: 63_280_000, end: 63_289_999 }, + { code: "2307106", start: 63_290_000, end: 63_299_999 }, + { code: "2307502", start: 63_300_000, end: 63_309_999 }, + { code: "2313708", start: 63_310_000, end: 63_319_999 }, + { code: "2301802", start: 63_320_000, end: 63_339_999 }, + { code: "2305704", start: 63_340_000, end: 63_359_999 }, + { code: "2301703", start: 63_360_000, end: 63_379_999 }, + { code: "2302008", start: 63_380_000, end: 63_399_999 }, + { code: "2303808", start: 63_400_000, end: 63_429_999 }, + { code: "2305407", start: 63_430_000, end: 63_459_999 }, + { code: "2310803", start: 63_460_000, end: 63_469_999 }, + { code: "2304277", start: 63_470_000, end: 63_474_999 }, + { code: "2306900", start: 63_475_000, end: 63_479_999 }, + { code: "2306702", start: 63_480_000, end: 63_489_999 }, + { code: "2306801", start: 63_490_000, end: 63_499_999 }, + { code: "2305506", start: 63_500_001, end: 63_514_999 }, + { code: "2311355", start: 63_515_000, end: 63_519_999 }, + { code: "2309508", start: 63_520_000, end: 63_529_999 }, + { code: "2303303", start: 63_530_000, end: 63_539_999 }, + { code: "2314003", start: 63_540_000, end: 63_559_999 }, + { code: "2300309", start: 63_560_000, end: 63_569_999 }, + { code: "2300804", start: 63_570_000, end: 63_574_999 }, + { code: "2300408", start: 63_575_000, end: 63_579_999 }, + { code: "2307403", start: 63_580_000, end: 63_589_999 }, + { code: "2311900", start: 63_590_000, end: 63_594_999 }, + { code: "2303600", start: 63_595_000, end: 63_599_999 }, + { code: "2312700", start: 63_600_000, end: 63_604_999 }, + { code: "2310902", start: 63_605_000, end: 63_609_999 }, + { code: "2308500", start: 63_610_000, end: 63_619_999 }, + { code: "2313005", start: 63_620_000, end: 63_629_999 }, + { code: "2310506", start: 63_630_000, end: 63_634_999 }, + { code: "2308351", start: 63_635_000, end: 63_639_999 }, + { code: "2305605", start: 63_640_000, end: 63_644_999 }, + { code: "2304269", start: 63_645_000, end: 63_649_999 }, + { code: "2311264", start: 63_650_000, end: 63_659_999 }, + { code: "2313302", start: 63_660_000, end: 63_669_999 }, + { code: "2301505", start: 63_670_000, end: 63_679_999 }, + { code: "2310308", start: 63_680_000, end: 63_699_999 }, + { code: "2304103", start: 63_700_000, end: 63_739_999 }, + { code: "2309409", start: 63_740_000, end: 63_749_999 }, + { code: "2313203", start: 63_750_000, end: 63_779_999 }, + { code: "2308609", start: 63_780_000, end: 63_799_999 }, + { code: "2311405", start: 63_800_000, end: 63_859_999 }, + { code: "2307635", start: 63_860_000, end: 63_869_999 }, + { code: "2302404", start: 63_870_000, end: 63_899_999 }, + { code: "2311306", start: 63_900_001, end: 63_949_999 }, + { code: "2303931", start: 63_950_000, end: 63_959_999 }, + { code: "2301851", start: 63_960_000, end: 63_969_999 }, + { code: "2305266", start: 63_970_000, end: 63_999_999 }, + { code: "2211001", start: 64_000_001, end: 64_099_999 }, + { code: "2201200", start: 64_100_000, end: 64_104_999 }, + { code: "2202059", start: 64_105_000, end: 64_107_999 }, + { code: "2201770", start: 64_108_000, end: 64_109_999 }, + { code: "2205508", start: 64_110_000, end: 64_119_999 }, + { code: "2211100", start: 64_120_000, end: 64_125_999 }, + { code: "2206209", start: 64_130_000, end: 64_137_999 }, + { code: "2205557", start: 64_138_000, end: 64_139_999 }, + { code: "2206803", start: 64_140_000, end: 64_144_999 }, + { code: "2208502", start: 64_145_000, end: 64_147_999 }, + { code: "2202174", start: 64_148_000, end: 64_149_999 }, + { code: "2206100", start: 64_150_000, end: 64_154_999 }, + { code: "2209971", start: 64_155_000, end: 64_159_999 }, + { code: "2205805", start: 64_160_000, end: 64_164_999 }, + { code: "2205458", start: 64_165_000, end: 64_167_999 }, + { code: "2205854", start: 64_168_000, end: 64_169_999 }, + { code: "2205409", start: 64_170_000, end: 64_174_999 }, + { code: "2206696", start: 64_175_000, end: 64_177_999 }, + { code: "2206670", start: 64_178_000, end: 64_179_999 }, + { code: "2203701", start: 64_180_000, end: 64_189_999 }, + { code: "2201507", start: 64_190_000, end: 64_199_999 }, + { code: "2207702", start: 64_200_001, end: 64_219_999 }, + { code: "2205706", start: 64_220_000, end: 64_221_999 }, + { code: "2202083", start: 64_222_000, end: 64_223_999 }, + { code: "2204659", start: 64_224_000, end: 64_224_999 }, + { code: "2201919", start: 64_225_000, end: 64_227_999 }, + { code: "2202653", start: 64_228_000, end: 64_229_999 }, + { code: "2202000", start: 64_230_000, end: 64_232_999 }, + { code: "2202539", start: 64_233_000, end: 64_234_999 }, + { code: "2202703", start: 64_235_000, end: 64_237_999 }, + { code: "2202729", start: 64_238_000, end: 64_239_999 }, + { code: "2208304", start: 64_240_000, end: 64_242_999 }, + { code: "2209872", start: 64_243_000, end: 64_244_999 }, + { code: "2210052", start: 64_245_000, end: 64_249_999 }, + { code: "2203420", start: 64_250_000, end: 64_252_999 }, + { code: "2206357", start: 64_253_000, end: 64_254_999 }, + { code: "2207900", start: 64_255_000, end: 64_257_999 }, + { code: "2205573", start: 64_258_000, end: 64_259_999 }, + { code: "2208403", start: 64_260_000, end: 64_264_999 }, + { code: "2201960", start: 64_265_000, end: 64_269_999 }, + { code: "2202406", start: 64_270_000, end: 64_274_999 }, + { code: "2205276", start: 64_275_000, end: 64_277_999 }, + { code: "2202711", start: 64_278_000, end: 64_279_999 }, + { code: "2202208", start: 64_280_000, end: 64_282_999 }, + { code: "2201945", start: 64_283_000, end: 64_284_999 }, + { code: "2210656", start: 64_285_000, end: 64_287_999 }, + { code: "2206753", start: 64_288_000, end: 64_289_999 }, + { code: "2200400", start: 64_290_000, end: 64_294_999 }, + { code: "2207793", start: 64_295_000, end: 64_299_999 }, + { code: "2211308", start: 64_300_000, end: 64_307_999 }, + { code: "2205599", start: 64_308_000, end: 64_309_999 }, + { code: "2200905", start: 64_310_000, end: 64_314_999 }, + { code: "2209153", start: 64_315_000, end: 64_319_999 }, + { code: "2208106", start: 64_320_000, end: 64_324_999 }, + { code: "2203503", start: 64_325_000, end: 64_329_999 }, + { code: "2210409", start: 64_330_000, end: 64_332_999 }, + { code: "2201051", start: 64_333_000, end: 64_334_999 }, + { code: "2202737", start: 64_335_000, end: 64_339_999 }, + { code: "2202604", start: 64_340_000, end: 64_342_999 }, + { code: "2205516", start: 64_343_000, end: 64_344_999 }, + { code: "2202026", start: 64_345_000, end: 64_349_999 }, + { code: "2209906", start: 64_350_000, end: 64_359_999 }, + { code: "2200301", start: 64_360_000, end: 64_364_999 }, + { code: "2206951", start: 64_365_000, end: 64_369_999 }, + { code: "2208601", start: 64_370_000, end: 64_374_999 }, + { code: "2209609", start: 64_375_000, end: 64_377_999 }, + { code: "2210383", start: 64_378_000, end: 64_379_999 }, + { code: "2201606", start: 64_380_000, end: 64_387_999 }, + { code: "2205581", start: 64_388_000, end: 64_389_999 }, + { code: "2203305", start: 64_390_000, end: 64_394_999 }, + { code: "2207751", start: 64_395_000, end: 64_399_999 }, + { code: "2200509", start: 64_400_000, end: 64_409_999 }, + { code: "2200608", start: 64_410_000, end: 64_414_999 }, + { code: "2206720", start: 64_415_000, end: 64_419_999 }, + { code: "2207504", start: 64_420_000, end: 64_429_999 }, + { code: "2210508", start: 64_430_000, end: 64_434_999 }, + { code: "2209807", start: 64_435_000, end: 64_437_999 }, + { code: "2209450", start: 64_438_000, end: 64_439_999 }, + { code: "2200103", start: 64_440_000, end: 64_444_999 }, + { code: "2206308", start: 64_445_000, end: 64_449_999 }, + { code: "2206407", start: 64_450_000, end: 64_452_999 }, + { code: "2203255", start: 64_453_000, end: 64_454_999 }, + { code: "2201408", start: 64_455_000, end: 64_459_999 }, + { code: "2200202", start: 64_460_000, end: 64_464_999 }, + { code: "2205540", start: 64_465_000, end: 64_467_999 }, + { code: "2207108", start: 64_468_000, end: 64_469_999 }, + { code: "2204600", start: 64_470_000, end: 64_474_999 }, + { code: "2204105", start: 64_475_000, end: 64_479_999 }, + { code: "2201002", start: 64_480_000, end: 64_489_999 }, + { code: "2208809", start: 64_490_000, end: 64_494_999 }, + { code: "2205250", start: 64_495_000, end: 64_499_999 }, + { code: "2207009", start: 64_500_000, end: 64_509_999 }, + { code: "2209955", start: 64_510_000, end: 64_511_999 }, + { code: "2210979", start: 64_512_000, end: 64_513_999 }, + { code: "2202075", start: 64_514_000, end: 64_515_999 }, + { code: "2202778", start: 64_516_000, end: 64_517_999 }, + { code: "2209377", start: 64_518_000, end: 64_519_999 }, + { code: "2204006", start: 64_520_000, end: 64_524_999 }, + { code: "2211407", start: 64_525_000, end: 64_527_999 }, + { code: "2201176", start: 64_528_000, end: 64_529_999 }, + { code: "2206902", start: 64_530_000, end: 64_534_999 }, + { code: "2204709", start: 64_535_000, end: 64_539_999 }, + { code: "2204808", start: 64_540_000, end: 64_544_999 }, + { code: "2209104", start: 64_545_000, end: 64_547_999 }, + { code: "2211704", start: 64_548_000, end: 64_549_999 }, + { code: "2209708", start: 64_550_000, end: 64_554_999 }, + { code: "2210102", start: 64_555_000, end: 64_557_999 }, + { code: "2210391", start: 64_558_000, end: 64_559_999 }, + { code: "2209500", start: 64_560_000, end: 64_562_999 }, + { code: "2203859", start: 64_563_000, end: 64_564_999 }, + { code: "2205003", start: 64_565_000, end: 64_567_999 }, + { code: "2211506", start: 64_568_000, end: 64_569_999 }, + { code: "2204907", start: 64_570_000, end: 64_572_999 }, + { code: "2206050", start: 64_573_000, end: 64_574_999 }, + { code: "2205201", start: 64_575_000, end: 64_577_999 }, + { code: "2202133", start: 64_578_000, end: 64_579_999 }, + { code: "2207777", start: 64_580_000, end: 64_584_999 }, + { code: "2210706", start: 64_585_000, end: 64_589_999 }, + { code: "2202554", start: 64_590_000, end: 64_594_999 }, + { code: "2203271", start: 64_595_000, end: 64_599_999 }, + { code: "2208007", start: 64_600_001, end: 64_609_999 }, + { code: "2210938", start: 64_610_000, end: 64_611_999 }, + { code: "2200954", start: 64_612_000, end: 64_612_999 }, + { code: "2204352", start: 64_613_000, end: 64_614_999 }, + { code: "2209351", start: 64_615_000, end: 64_617_999 }, + { code: "2207553", start: 64_618_000, end: 64_619_999 }, + { code: "2203404", start: 64_620_000, end: 64_624_999 }, + { code: "2210201", start: 64_625_000, end: 64_629_999 }, + { code: "2201804", start: 64_630_000, end: 64_634_999 }, + { code: "2209856", start: 64_635_000, end: 64_637_999 }, + { code: "2210375", start: 64_638_000, end: 64_639_999 }, + { code: "2209401", start: 64_640_000, end: 64_644_999 }, + { code: "2204204", start: 64_645_000, end: 64_649_999 }, + { code: "2206506", start: 64_650_000, end: 64_654_999 }, + { code: "2200251", start: 64_655_000, end: 64_659_999 }, + { code: "2208205", start: 64_660_000, end: 64_669_999 }, + { code: "2210300", start: 64_670_000, end: 64_674_999 }, + { code: "2200277", start: 64_675_000, end: 64_677_999 }, + { code: "2201572", start: 64_678_000, end: 64_679_999 }, + { code: "2207207", start: 64_680_000, end: 64_682_999 }, + { code: "2204154", start: 64_683_000, end: 64_684_999 }, + { code: "2205953", start: 64_685_000, end: 64_687_999 }, + { code: "2211605", start: 64_688_000, end: 64_689_999 }, + { code: "2204303", start: 64_690_000, end: 64_694_999 }, + { code: "2202091", start: 64_695_000, end: 64_699_999 }, + { code: "2210805", start: 64_700_000, end: 64_704_999 }, + { code: "2201556", start: 64_705_000, end: 64_709_999 }, + { code: "2207306", start: 64_710_000, end: 64_719_999 }, + { code: "2210904", start: 64_720_000, end: 64_724_999 }, + { code: "2208874", start: 64_725_000, end: 64_727_999 }, + { code: "2207934", start: 64_728_000, end: 64_729_999 }, + { code: "2202109", start: 64_730_000, end: 64_739_999 }, + { code: "2202802", start: 64_740_000, end: 64_744_999 }, + { code: "2209658", start: 64_745_000, end: 64_747_999 }, + { code: "2200053", start: 64_748_000, end: 64_749_999 }, + { code: "2207801", start: 64_750_000, end: 64_752_999 }, + { code: "2201739", start: 64_753_000, end: 64_754_999 }, + { code: "2205151", start: 64_755_000, end: 64_757_999 }, + { code: "2208650", start: 64_758_000, end: 64_759_999 }, + { code: "2210003", start: 64_760_000, end: 64_762_999 }, + { code: "2202455", start: 64_763_000, end: 64_763_999 }, + { code: "2207959", start: 64_764_000, end: 64_764_999 }, + { code: "2205359", start: 64_765_000, end: 64_766_999 }, + { code: "2202117", start: 64_767_000, end: 64_767_999 }, + { code: "2205565", start: 64_768_000, end: 64_769_999 }, + { code: "2210607", start: 64_770_000, end: 64_772_999 }, + { code: "2211357", start: 64_773_000, end: 64_774_999 }, + { code: "2201929", start: 64_775_000, end: 64_777_999 }, + { code: "2210359", start: 64_778_000, end: 64_779_999 }, + { code: "2200707", start: 64_780_000, end: 64_781_999 }, + { code: "2205532", start: 64_782_000, end: 64_782_999 }, + { code: "2209559", start: 64_783_000, end: 64_784_999 }, + { code: "2203354", start: 64_785_000, end: 64_787_999 }, + { code: "2203750", start: 64_788_000, end: 64_789_999 }, + { code: "2203453", start: 64_790_000, end: 64_792_999 }, + { code: "2202851", start: 64_793_000, end: 64_794_999 }, + { code: "2202505", start: 64_795_000, end: 64_797_999 }, + { code: "2204550", start: 64_798_000, end: 64_799_999 }, + { code: "2203909", start: 64_800_001, end: 64_814_999 }, + { code: "2203800", start: 64_815_000, end: 64_819_999 }, + { code: "2205102", start: 64_820_000, end: 64_824_999 }, + { code: "2206704", start: 64_825_000, end: 64_829_999 }, + { code: "2205300", start: 64_830_000, end: 64_832_999 }, + { code: "2202251", start: 64_833_000, end: 64_834_999 }, + { code: "2209005", start: 64_835_000, end: 64_837_999 }, + { code: "2207850", start: 64_838_000, end: 64_839_999 }, + { code: "2204501", start: 64_840_000, end: 64_844_999 }, + { code: "2206001", start: 64_845_000, end: 64_849_999 }, + { code: "2205607", start: 64_850_000, end: 64_854_999 }, + { code: "2200806", start: 64_855_000, end: 64_857_999 }, + { code: "2208551", start: 64_858_000, end: 64_859_999 }, + { code: "2211209", start: 64_860_000, end: 64_864_999 }, + { code: "2208908", start: 64_865_000, end: 64_867_999 }, + { code: "2201150", start: 64_868_000, end: 64_869_999 }, + { code: "2201705", start: 64_870_000, end: 64_872_999 }, + { code: "2210631", start: 64_873_000, end: 64_874_999 }, + { code: "2205904", start: 64_875_000, end: 64_879_999 }, + { code: "2203602", start: 64_880_000, end: 64_884_999 }, + { code: "2202752", start: 64_885_000, end: 64_889_999 }, + { code: "2202307", start: 64_890_000, end: 64_892_999 }, + { code: "2210953", start: 64_893_000, end: 64_894_999 }, + { code: "2201988", start: 64_895_000, end: 64_897_999 }, + { code: "2207355", start: 64_898_000, end: 64_899_999 }, + { code: "2201903", start: 64_900_000, end: 64_904_999 }, + { code: "2203230", start: 64_905_000, end: 64_909_999 }, + { code: "2209302", start: 64_910_000, end: 64_914_999 }, + { code: "2208700", start: 64_915_000, end: 64_919_999 }, + { code: "2203107", start: 64_920_000, end: 64_922_999 }, + { code: "2200459", start: 64_923_000, end: 64_924_999 }, + { code: "2207405", start: 64_925_000, end: 64_929_999 }, + { code: "2204402", start: 64_930_000, end: 64_939_999 }, + { code: "2206605", start: 64_940_000, end: 64_944_999 }, + { code: "2209203", start: 64_945_000, end: 64_959_999 }, + { code: "2203206", start: 64_960_000, end: 64_962_999 }, + { code: "2205524", start: 64_963_000, end: 64_964_999 }, + { code: "2201101", start: 64_965_000, end: 64_967_999 }, + { code: "2206654", start: 64_968_000, end: 64_969_999 }, + { code: "2207603", start: 64_970_000, end: 64_974_999 }, + { code: "2208858", start: 64_975_000, end: 64_979_999 }, + { code: "2202901", start: 64_980_000, end: 64_984_999 }, + { code: "2210623", start: 64_985_000, end: 64_989_999 }, + { code: "2201309", start: 64_990_000, end: 64_992_999 }, + { code: "2209757", start: 64_993_000, end: 64_994_999 }, + { code: "2203008", start: 64_995_000, end: 64_999_999 }, + { code: "2111300", start: 65_000_001, end: 65_109_999 }, + { code: "2111201", start: 65_110_000, end: 65_129_999 }, + { code: "2107506", start: 65_130_000, end: 65_137_999 }, + { code: "2109452", start: 65_138_000, end: 65_139_999 }, + { code: "2109205", start: 65_140_000, end: 65_142_999 }, + { code: "2101251", start: 65_143_000, end: 65_144_999 }, + { code: "2110203", start: 65_145_000, end: 65_147_999 }, + { code: "2101103", start: 65_148_000, end: 65_149_999 }, + { code: "2109601", start: 65_150_000, end: 65_152_999 }, + { code: "2107100", start: 65_160_000, end: 65_164_999 }, + { code: "2102374", start: 65_165_000, end: 65_169_999 }, + { code: "2105104", start: 65_170_000, end: 65_179_999 }, + { code: "2105005", start: 65_180_000, end: 65_189_999 }, + { code: "2109403", start: 65_190_000, end: 65_194_999 }, + { code: "2110278", start: 65_195_000, end: 65_199_999 }, + { code: "2108603", start: 65_200_000, end: 65_203_999 }, + { code: "2109270", start: 65_204_000, end: 65_205_999 }, + { code: "2108256", start: 65_206_000, end: 65_207_999 }, + { code: "2109809", start: 65_208_000, end: 65_209_999 }, + { code: "2102507", start: 65_210_000, end: 65_212_999 }, + { code: "2108306", start: 65_213_000, end: 65_214_999 }, + { code: "2112803", start: 65_215_000, end: 65_217_999 }, + { code: "2106508", start: 65_218_000, end: 65_219_999 }, + { code: "2111706", start: 65_220_000, end: 65_222_999 }, + { code: "2107456", start: 65_223_000, end: 65_224_999 }, + { code: "2111003", start: 65_225_000, end: 65_229_999 }, + { code: "2102408", start: 65_230_000, end: 65_232_999 }, + { code: "2101350", start: 65_233_000, end: 65_234_999 }, + { code: "2110500", start: 65_235_000, end: 65_237_999 }, + { code: "2107605", start: 65_238_000, end: 65_244_999 }, + { code: "2108405", start: 65_245_000, end: 65_247_999 }, + { code: "2101905", start: 65_248_000, end: 65_249_999 }, + { code: "2100204", start: 65_250_000, end: 65_254_999 }, + { code: "2104909", start: 65_255_000, end: 65_259_999 }, + { code: "2103109", start: 65_260_000, end: 65_262_999 }, + { code: "2109056", start: 65_263_000, end: 65_264_999 }, + { code: "2106805", start: 65_265_000, end: 65_266_999 }, + { code: "2103125", start: 65_267_000, end: 65_267_999 }, + { code: "2103703", start: 65_268_000, end: 65_268_999 }, + { code: "2111789", start: 65_269_000, end: 65_269_999 }, + { code: "2101301", start: 65_270_000, end: 65_271_999 }, + { code: "2110039", start: 65_272_000, end: 65_273_999 }, + { code: "2107357", start: 65_274_000, end: 65_274_999 }, + { code: "2100832", start: 65_275_000, end: 65_275_999 }, + { code: "2112456", start: 65_276_000, end: 65_277_999 }, + { code: "2112407", start: 65_278_000, end: 65_278_999 }, + { code: "2109239", start: 65_279_000, end: 65_279_999 }, + { code: "2102606", start: 65_280_000, end: 65_282_999 }, + { code: "2106375", start: 65_283_000, end: 65_283_999 }, + { code: "2104677", start: 65_284_000, end: 65_284_999 }, + { code: "2104305", start: 65_285_000, end: 65_287_999 }, + { code: "2103158", start: 65_288_000, end: 65_288_999 }, + { code: "2106326", start: 65_289_000, end: 65_289_999 }, + { code: "2106201", start: 65_290_000, end: 65_291_999 }, + { code: "2101970", start: 65_292_000, end: 65_292_999 }, + { code: "2100550", start: 65_293_000, end: 65_293_999 }, + { code: "2105658", start: 65_294_000, end: 65_294_999 }, + { code: "2102903", start: 65_295_000, end: 65_298_999 }, + { code: "2103174", start: 65_299_000, end: 65_299_999 }, + { code: "2109908", start: 65_300_001, end: 65_309_999 }, + { code: "2100402", start: 65_310_000, end: 65_314_999 }, + { code: "2102150", start: 65_315_000, end: 65_319_999 }, + { code: "2113009", start: 65_320_000, end: 65_334_999 }, + { code: "2101772", start: 65_335_000, end: 65_339_999 }, + { code: "2103554", start: 65_340_000, end: 65_344_999 }, + { code: "2105153", start: 65_345_000, end: 65_349_999 }, + { code: "2112902", start: 65_350_000, end: 65_359_999 }, + { code: "2106904", start: 65_360_000, end: 65_362_999 }, + { code: "2104651", start: 65_363_000, end: 65_364_999 }, + { code: "2114007", start: 65_365_000, end: 65_367_999 }, + { code: "2100873", start: 65_368_000, end: 65_369_999 }, + { code: "2108504", start: 65_370_000, end: 65_377_999 }, + { code: "2112274", start: 65_378_000, end: 65_379_999 }, + { code: "2102002", start: 65_380_000, end: 65_384_999 }, + { code: "2111029", start: 65_385_000, end: 65_389_999 }, + { code: "2110005", start: 65_390_000, end: 65_392_999 }, + { code: "2102325", start: 65_393_000, end: 65_394_999 }, + { code: "2102036", start: 65_395_000, end: 65_397_999 }, + { code: "2100477", start: 65_398_000, end: 65_399_999 }, + { code: "2103307", start: 65_400_000, end: 65_412_999 }, + { code: "2100436", start: 65_413_000, end: 65_414_999 }, + { code: "2103604", start: 65_415_000, end: 65_417_999 }, + { code: "2108454", start: 65_418_000, end: 65_419_999 }, + { code: "2112100", start: 65_420_000, end: 65_429_999 }, + { code: "2112704", start: 65_430_000, end: 65_439_999 }, + { code: "2110401", start: 65_440_000, end: 65_449_999 }, + { code: "2107209", start: 65_450_000, end: 65_454_999 }, + { code: "2109304", start: 65_455_000, end: 65_459_999 }, + { code: "2108801", start: 65_460_000, end: 65_464_999 }, + { code: "2102705", start: 65_465_000, end: 65_467_999 }, + { code: "2106631", start: 65_468_000, end: 65_469_999 }, + { code: "2111508", start: 65_470_000, end: 65_479_999 }, + { code: "2101004", start: 65_480_000, end: 65_484_999 }, + { code: "2105401", start: 65_485_000, end: 65_489_999 }, + { code: "2100709", start: 65_490_000, end: 65_494_999 }, + { code: "2106755", start: 65_495_000, end: 65_499_999 }, + { code: "2103208", start: 65_500_000, end: 65_504_999 }, + { code: "2100105", start: 65_505_000, end: 65_509_999 }, + { code: "2106409", start: 65_510_000, end: 65_514_999 }, + { code: "2102200", start: 65_515_000, end: 65_519_999 }, + { code: "2102101", start: 65_520_000, end: 65_524_999 }, + { code: "2100808", start: 65_525_000, end: 65_529_999 }, + { code: "2112605", start: 65_530_000, end: 65_534_999 }, + { code: "2101731", start: 65_535_000, end: 65_539_999 }, + { code: "2110104", start: 65_540_000, end: 65_544_999 }, + { code: "2106672", start: 65_545_000, end: 65_549_999 }, + { code: "2110609", start: 65_550_000, end: 65_554_999 }, + { code: "2110237", start: 65_555_000, end: 65_559_999 }, + { code: "2106300", start: 65_560_000, end: 65_569_999 }, + { code: "2100907", start: 65_570_000, end: 65_577_999 }, + { code: "2100154", start: 65_578_000, end: 65_579_999 }, + { code: "2112506", start: 65_580_000, end: 65_584_999 }, + { code: "2108058", start: 65_585_000, end: 65_589_999 }, + { code: "2101707", start: 65_590_000, end: 65_599_999 }, + { code: "2103000", start: 65_600_001, end: 65_609_999 }, + { code: "2100303", start: 65_610_000, end: 65_614_999 }, + { code: "2111078", start: 65_615_000, end: 65_619_999 }, + { code: "2103406", start: 65_620_000, end: 65_624_999 }, + { code: "2103901", start: 65_625_000, end: 65_629_999 }, + { code: "2112209", start: 65_630_001, end: 65_639_999 }, + { code: "2107803", start: 65_640_000, end: 65_644_999 }, + { code: "2106607", start: 65_645_000, end: 65_649_999 }, + { code: "2110906", start: 65_650_000, end: 65_659_999 }, + { code: "2101509", start: 65_660_000, end: 65_664_999 }, + { code: "2111102", start: 65_665_000, end: 65_667_999 }, + { code: "2111953", start: 65_668_000, end: 65_669_999 }, + { code: "2107704", start: 65_670_000, end: 65_679_999 }, + { code: "2107902", start: 65_680_000, end: 65_682_999 }, + { code: "2105922", start: 65_683_000, end: 65_684_999 }, + { code: "2102309", start: 65_685_000, end: 65_689_999 }, + { code: "2103505", start: 65_690_000, end: 65_692_999 }, + { code: "2105450", start: 65_693_000, end: 65_694_999 }, + { code: "2104206", start: 65_695_000, end: 65_699_999 }, + { code: "2101202", start: 65_700_000, end: 65_703_999 }, + { code: "2102077", start: 65_704_000, end: 65_704_999 }, + { code: "2105906", start: 65_705_000, end: 65_705_999 }, + { code: "2107407", start: 65_706_000, end: 65_706_999 }, + { code: "2108702", start: 65_707_000, end: 65_707_999 }, + { code: "2111409", start: 65_708_000, end: 65_708_999 }, + { code: "2111722", start: 65_709_000, end: 65_709_999 }, + { code: "2105807", start: 65_710_000, end: 65_711_999 }, + { code: "2105948", start: 65_712_000, end: 65_713_999 }, + { code: "2106359", start: 65_714_000, end: 65_714_999 }, + { code: "2105708", start: 65_715_000, end: 65_715_999 }, + { code: "2108108", start: 65_716_000, end: 65_717_999 }, + { code: "2105963", start: 65_718_000, end: 65_719_999 }, + { code: "2105203", start: 65_720_000, end: 65_722_999 }, + { code: "2101939", start: 65_723_000, end: 65_724_999 }, + { code: "2108207", start: 65_725_000, end: 65_726_999 }, + { code: "2112233", start: 65_727_000, end: 65_727_999 }, + { code: "2106003", start: 65_728_000, end: 65_729_999 }, + { code: "2110302", start: 65_730_000, end: 65_734_999 }, + { code: "2102754", start: 65_735_000, end: 65_739_999 }, + { code: "2108900", start: 65_740_000, end: 65_749_999 }, + { code: "2104008", start: 65_750_000, end: 65_752_999 }, + { code: "2111631", start: 65_753_000, end: 65_754_999 }, + { code: "2105609", start: 65_755_000, end: 65_757_999 }, + { code: "2111672", start: 65_758_000, end: 65_759_999 }, + { code: "2109106", start: 65_760_000, end: 65_761_999 }, + { code: "2111250", start: 65_762_000, end: 65_762_999 }, + { code: "2112308", start: 65_763_000, end: 65_764_999 }, + { code: "2103802", start: 65_765_000, end: 65_767_999 }, + { code: "2109759", start: 65_768_000, end: 65_769_999 }, + { code: "2104503", start: 65_770_000, end: 65_774_999 }, + { code: "2104404", start: 65_775_000, end: 65_779_999 }, + { code: "2104602", start: 65_780_000, end: 65_782_999 }, + { code: "2111748", start: 65_783_000, end: 65_784_999 }, + { code: "2104701", start: 65_785_000, end: 65_789_999 }, + { code: "2110708", start: 65_790_000, end: 65_794_999 }, + { code: "2104628", start: 65_795_000, end: 65_799_999 }, + { code: "2101400", start: 65_800_000, end: 65_804_999 }, + { code: "2104107", start: 65_805_000, end: 65_807_999 }, + { code: "2107258", start: 65_808_000, end: 65_809_999 }, + { code: "2100501", start: 65_810_000, end: 65_819_999 }, + { code: "2112001", start: 65_820_000, end: 65_829_999 }, + { code: "2109700", start: 65_830_000, end: 65_839_999 }, + { code: "2111607", start: 65_840_000, end: 65_849_999 }, + { code: "2106706", start: 65_850_000, end: 65_859_999 }, + { code: "2111904", start: 65_860_000, end: 65_869_999 }, + { code: "2108009", start: 65_870_000, end: 65_879_999 }, + { code: "2107308", start: 65_880_000, end: 65_884_999 }, + { code: "2101806", start: 65_885_000, end: 65_887_999 }, + { code: "2110658", start: 65_888_000, end: 65_889_999 }, + { code: "2110807", start: 65_890_000, end: 65_894_999 }, + { code: "2106102", start: 65_895_000, end: 65_899_999 }, + { code: "2105302", start: 65_900_001, end: 65_919_999 }, + { code: "2111532", start: 65_920_000, end: 65_920_999 }, + { code: "2103257", start: 65_921_000, end: 65_921_999 }, + { code: "2105500", start: 65_922_000, end: 65_922_999 }, + { code: "2100600", start: 65_923_000, end: 65_923_999 }, + { code: "2112852", start: 65_924_000, end: 65_924_999 }, + { code: "2111805", start: 65_925_000, end: 65_926_999 }, + { code: "2103752", start: 65_927_000, end: 65_927_999 }, + { code: "2104552", start: 65_928_000, end: 65_928_999 }, + { code: "2110856", start: 65_929_000, end: 65_929_999 }, + { code: "2100055", start: 65_930_000, end: 65_934_999 }, + { code: "2111763", start: 65_935_000, end: 65_935_499 }, + { code: "2102358", start: 65_935_500, end: 65_935_999 }, + { code: "2107001", start: 65_936_000, end: 65_936_999 }, + { code: "2105989", start: 65_937_000, end: 65_937_999 }, + { code: "2109551", start: 65_938_000, end: 65_938_999 }, + { code: "2105427", start: 65_939_000, end: 65_939_999 }, + { code: "2104800", start: 65_940_000, end: 65_942_999 }, + { code: "2104099", start: 65_943_000, end: 65_944_999 }, + { code: "2100956", start: 65_945_000, end: 65_947_999 }, + { code: "2105351", start: 65_948_000, end: 65_949_999 }, + { code: "2101608", start: 65_950_000, end: 65_961_999 }, + { code: "2105476", start: 65_962_000, end: 65_963_999 }, + { code: "2104081", start: 65_964_000, end: 65_967_999 }, + { code: "2102556", start: 65_968_000, end: 65_969_999 }, + { code: "2109007", start: 65_970_000, end: 65_972_999 }, + { code: "2111052", start: 65_973_000, end: 65_974_999 }, + { code: "2104057", start: 65_975_000, end: 65_977_999 }, + { code: "2111573", start: 65_978_000, end: 65_979_999 }, + { code: "2102804", start: 65_980_000, end: 65_989_999 }, + { code: "2109502", start: 65_990_000, end: 65_994_999 }, + { code: "2104073", start: 65_995_000, end: 65_999_999 }, + { code: "1501402", start: 66_000_001, end: 66_999_999 }, + { code: "1500800", start: 67_000_001, end: 67_199_999 }, + { code: "1504422", start: 67_200_000, end: 67_999_999 }, + { code: "1506807", start: 68_000_001, end: 68_128_999 }, + { code: "1504752", start: 68_129_000, end: 68_129_999 }, + { code: "1506005", start: 68_130_000, end: 68_137_999 }, + { code: "1505650", start: 68_138_000, end: 68_139_999 }, + { code: "1508159", start: 68_140_000, end: 68_142_999 }, + { code: "1501451", start: 68_143_000, end: 68_144_999 }, + { code: "1504455", start: 68_145_000, end: 68_147_999 }, + { code: "1501725", start: 68_148_000, end: 68_149_999 }, + { code: "1501006", start: 68_150_000, end: 68_164_999 }, + { code: "1506195", start: 68_165_000, end: 68_169_999 }, + { code: "1503903", start: 68_170_000, end: 68_179_999 }, + { code: "1503606", start: 68_180_001, end: 68_192_999 }, + { code: "1505031", start: 68_193_000, end: 68_194_999 }, + { code: "1503754", start: 68_195_000, end: 68_197_999 }, + { code: "1508050", start: 68_198_000, end: 68_199_999 }, + { code: "1500404", start: 68_200_000, end: 68_209_999 }, + { code: "1502855", start: 68_210_000, end: 68_219_999 }, + { code: "1504802", start: 68_220_000, end: 68_229_999 }, + { code: "1500503", start: 68_230_000, end: 68_249_999 }, + { code: "1505106", start: 68_250_000, end: 68_269_999 }, + { code: "1505304", start: 68_270_000, end: 68_279_999 }, + { code: "1503002", start: 68_280_000, end: 68_284_999 }, + { code: "1507979", start: 68_285_000, end: 68_299_999 }, + { code: "1503101", start: 68_300_000, end: 68_329_999 }, + { code: "1505908", start: 68_330_000, end: 68_359_999 }, + { code: "1507805", start: 68_360_000, end: 68_364_999 }, + { code: "1500859", start: 68_365_000, end: 68_369_999 }, + { code: "1500602", start: 68_370_001, end: 68_379_999 }, + { code: "1507300", start: 68_380_000, end: 68_382_999 }, + { code: "1508357", start: 68_383_000, end: 68_384_999 }, + { code: "1508084", start: 68_385_000, end: 68_387_999 }, + { code: "1501253", start: 68_388_000, end: 68_389_999 }, + { code: "1505437", start: 68_390_000, end: 68_397_999 }, + { code: "1502764", start: 68_398_000, end: 68_399_999 }, + { code: "1502103", start: 68_400_000, end: 68_414_999 }, + { code: "1504000", start: 68_415_000, end: 68_419_999 }, + { code: "1504604", start: 68_420_000, end: 68_429_999 }, + { code: "1503309", start: 68_430_000, end: 68_439_999 }, + { code: "1500107", start: 68_440_000, end: 68_444_999 }, + { code: "1501303", start: 68_445_000, end: 68_449_999 }, + { code: "1504703", start: 68_450_000, end: 68_454_999 }, + { code: "1508100", start: 68_455_001, end: 68_464_999 }, + { code: "1501204", start: 68_465_000, end: 68_469_999 }, + { code: "1505205", start: 68_470_000, end: 68_472_999 }, + { code: "1505064", start: 68_473_000, end: 68_474_999 }, + { code: "1501105", start: 68_475_000, end: 68_479_999 }, + { code: "1505809", start: 68_480_000, end: 68_484_999 }, + { code: "1505486", start: 68_485_000, end: 68_487_999 }, + { code: "1501782", start: 68_488_000, end: 68_489_999 }, + { code: "1504505", start: 68_490_000, end: 68_499_999 }, + { code: "1504208", start: 68_500_001, end: 68_514_999 }, + { code: "1505536", start: 68_515_000, end: 68_517_999 }, + { code: "1507508", start: 68_518_000, end: 68_519_999 }, + { code: "1507151", start: 68_520_000, end: 68_520_999 }, + { code: "1501758", start: 68_521_000, end: 68_522_999 }, + { code: "1502772", start: 68_523_000, end: 68_523_999 }, + { code: "1502954", start: 68_524_000, end: 68_524_999 }, + { code: "1501576", start: 68_525_000, end: 68_526_999 }, + { code: "1500131", start: 68_527_000, end: 68_529_999 }, + { code: "1506161", start: 68_530_000, end: 68_532_999 }, + { code: "1500347", start: 68_533_000, end: 68_534_999 }, + { code: "1505494", start: 68_535_000, end: 68_536_999 }, + { code: "1502152", start: 68_537_000, end: 68_539_999 }, + { code: "1502707", start: 68_540_000, end: 68_542_999 }, + { code: "1503044", start: 68_543_000, end: 68_544_999 }, + { code: "1505551", start: 68_545_000, end: 68_547_999 }, + { code: "1507755", start: 68_548_000, end: 68_548_999 }, + { code: "1506138", start: 68_549_001, end: 68_554_999 }, + { code: "1508407", start: 68_555_001, end: 68_559_999 }, + { code: "1506708", start: 68_560_000, end: 68_564_999 }, + { code: "1506583", start: 68_565_000, end: 68_569_999 }, + { code: "1507458", start: 68_570_000, end: 68_574_999 }, + { code: "1505635", start: 68_575_000, end: 68_579_999 }, + { code: "1503705", start: 68_580_000, end: 68_584_999 }, + { code: "1504976", start: 68_585_000, end: 68_589_999 }, + { code: "1503804", start: 68_590_000, end: 68_599_999 }, + { code: "1501709", start: 68_600_000, end: 68_609_999 }, + { code: "1500909", start: 68_610_000, end: 68_616_999 }, + { code: "1501956", start: 68_617_000, end: 68_617_999 }, + { code: "1504950", start: 68_618_000, end: 68_619_999 }, + { code: "1508308", start: 68_620_000, end: 68_624_999 }, + { code: "1505502", start: 68_625_001, end: 68_631_999 }, + { code: "1508126", start: 68_632_000, end: 68_632_999 }, + { code: "1502939", start: 68_633_000, end: 68_634_999 }, + { code: "1507201", start: 68_635_000, end: 68_636_999 }, + { code: "1503457", start: 68_637_000, end: 68_637_999 }, + { code: "1506187", start: 68_638_000, end: 68_638_999 }, + { code: "1503093", start: 68_639_000, end: 68_639_999 }, + { code: "1505403", start: 68_640_000, end: 68_643_999 }, + { code: "1506559", start: 68_644_000, end: 68_644_999 }, + { code: "1501600", start: 68_645_000, end: 68_646_999 }, + { code: "1508035", start: 68_647_000, end: 68_649_999 }, + { code: "1502301", start: 68_650_000, end: 68_654_999 }, + { code: "1503507", start: 68_655_000, end: 68_657_999 }, + { code: "1500958", start: 68_658_000, end: 68_659_999 }, + { code: "1507607", start: 68_660_000, end: 68_664_999 }, + { code: "1503077", start: 68_665_000, end: 68_669_999 }, + { code: "1501907", start: 68_670_000, end: 68_674_999 }, + { code: "1504059", start: 68_675_000, end: 68_679_999 }, + { code: "1508001", start: 68_680_000, end: 68_684_999 }, + { code: "1502756", start: 68_685_000, end: 68_689_999 }, + { code: "1500206", start: 68_690_000, end: 68_694_999 }, + { code: "1507953", start: 68_695_000, end: 68_699_999 }, + { code: "1502202", start: 68_700_001, end: 68_706_999 }, + { code: "1506104", start: 68_707_000, end: 68_708_999 }, + { code: "1506112", start: 68_709_000, end: 68_709_999 }, + { code: "1504307", start: 68_710_000, end: 68_718_999 }, + { code: "1507474", start: 68_719_000, end: 68_719_999 }, + { code: "1506906", start: 68_720_000, end: 68_720_999 }, + { code: "1506203", start: 68_721_000, end: 68_721_999 }, + { code: "1504109", start: 68_722_000, end: 68_724_999 }, + { code: "1503200", start: 68_725_000, end: 68_729_999 }, + { code: "1505007", start: 68_730_000, end: 68_733_999 }, + { code: "1505601", start: 68_734_000, end: 68_737_999 }, + { code: "1506609", start: 68_738_000, end: 68_739_999 }, + { code: "1502400", start: 68_740_001, end: 68_747_999 }, + { code: "1507409", start: 68_748_000, end: 68_749_999 }, + { code: "1502905", start: 68_750_000, end: 68_759_999 }, + { code: "1504406", start: 68_760_000, end: 68_769_999 }, + { code: "1503408", start: 68_770_000, end: 68_772_999 }, + { code: "1507961", start: 68_773_000, end: 68_773_999 }, + { code: "1507466", start: 68_774_000, end: 68_774_999 }, + { code: "1507102", start: 68_775_000, end: 68_779_999 }, + { code: "1508209", start: 68_780_000, end: 68_784_999 }, + { code: "1502608", start: 68_785_000, end: 68_785_999 }, + { code: "1507003", start: 68_786_000, end: 68_789_999 }, + { code: "1506500", start: 68_790_000, end: 68_794_999 }, + { code: "1501501", start: 68_795_000, end: 68_797_999 }, + { code: "1506351", start: 68_798_000, end: 68_799_999 }, + { code: "1501808", start: 68_800_000, end: 68_809_999 }, + { code: "1500701", start: 68_810_000, end: 68_814_999 }, + { code: "1502806", start: 68_815_000, end: 68_819_999 }, + { code: "1507706", start: 68_820_000, end: 68_824_999 }, + { code: "1504901", start: 68_825_000, end: 68_829_999 }, + { code: "1505700", start: 68_830_000, end: 68_839_999 }, + { code: "1502004", start: 68_840_000, end: 68_849_999 }, + { code: "1506401", start: 68_850_000, end: 68_859_999 }, + { code: "1506302", start: 68_860_000, end: 68_869_999 }, + { code: "1507904", start: 68_870_000, end: 68_879_999 }, + { code: "1502509", start: 68_880_000, end: 68_889_999 }, + { code: "1500305", start: 68_890_000, end: 68_899_999 }, + { code: "1600303", start: 68_900_001, end: 68_914_999 }, + { code: "1600238", start: 68_915_000, end: 68_917_999 }, + { code: "1600550", start: 68_918_000, end: 68_919_999 }, + { code: "1600279", start: 68_920_000, end: 68_923_999 }, + { code: "1600808", start: 68_924_000, end: 68_924_999 }, + { code: "1600600", start: 68_925_001, end: 68_939_999 }, + { code: "1600402", start: 68_940_000, end: 68_944_999 }, + { code: "1600154", start: 68_945_000, end: 68_947_999 }, + { code: "1600055", start: 68_948_000, end: 68_949_999 }, + { code: "1600105", start: 68_950_000, end: 68_959_999 }, + { code: "1600204", start: 68_960_000, end: 68_972_999 }, + { code: "1600212", start: 68_973_000, end: 68_975_999 }, + { code: "1600253", start: 68_976_000, end: 68_979_999 }, + { code: "1600501", start: 68_980_000, end: 68_989_999 }, + { code: "1600709", start: 68_990_000, end: 68_996_999 }, + { code: "1600535", start: 68_997_000, end: 68_999_999 }, + { code: "1302603", start: 69_000_001, end: 69_099_999 }, + { code: "1301902", start: 69_100_001, end: 69_113_999 }, + { code: "1304005", start: 69_114_000, end: 69_116_999 }, + { code: "1303569", start: 69_117_000, end: 69_119_999 }, + { code: "1302009", start: 69_120_000, end: 69_129_999 }, + { code: "1304302", start: 69_130_000, end: 69_134_999 }, + { code: "1303957", start: 69_135_000, end: 69_139_999 }, + { code: "1303007", start: 69_140_000, end: 69_149_999 }, + { code: "1303403", start: 69_150_001, end: 69_159_999 }, + { code: "1300508", start: 69_160_000, end: 69_179_999 }, + { code: "1304401", start: 69_180_000, end: 69_189_999 }, + { code: "1302900", start: 69_190_000, end: 69_194_999 }, + { code: "1300680", start: 69_195_000, end: 69_199_999 }, + { code: "1300805", start: 69_200_000, end: 69_229_999 }, + { code: "1303106", start: 69_230_000, end: 69_239_999 }, + { code: "1300300", start: 69_240_000, end: 69_249_999 }, + { code: "1301100", start: 69_250_000, end: 69_254_999 }, + { code: "1301159", start: 69_255_000, end: 69_259_999 }, + { code: "1303304", start: 69_260_000, end: 69_264_999 }, + { code: "1300144", start: 69_265_000, end: 69_279_999 }, + { code: "1302702", start: 69_280_000, end: 69_299_999 }, + { code: "1400100", start: 69_300_001, end: 69_339_999 }, + { code: "1400308", start: 69_340_000, end: 69_342_999 }, + { code: "1400027", start: 69_343_000, end: 69_344_999 }, + { code: "1400456", start: 69_345_000, end: 69_347_999 }, + { code: "1400282", start: 69_348_000, end: 69_349_999 }, + { code: "1400050", start: 69_350_000, end: 69_354_999 }, + { code: "1400407", start: 69_355_000, end: 69_357_999 }, + { code: "1400704", start: 69_358_000, end: 69_359_999 }, + { code: "1400209", start: 69_360_000, end: 69_369_999 }, + { code: "1400605", start: 69_370_000, end: 69_372_999 }, + { code: "1400472", start: 69_373_000, end: 69_374_999 }, + { code: "1400506", start: 69_375_000, end: 69_377_999 }, + { code: "1400233", start: 69_378_000, end: 69_379_999 }, + { code: "1400159", start: 69_380_000, end: 69_389_999 }, + { code: "1400175", start: 69_390_000, end: 69_399_999 }, + { code: "1302504", start: 69_400_001, end: 69_414_999 }, + { code: "1301852", start: 69_415_000, end: 69_424_999 }, + { code: "1300839", start: 69_425_000, end: 69_429_999 }, + { code: "1300631", start: 69_430_000, end: 69_434_999 }, + { code: "1302553", start: 69_435_000, end: 69_439_999 }, + { code: "1300102", start: 69_440_000, end: 69_444_999 }, + { code: "1300086", start: 69_445_000, end: 69_449_999 }, + { code: "1301308", start: 69_450_000, end: 69_459_999 }, + { code: "1301209", start: 69_460_000, end: 69_469_999 }, + { code: "1304104", start: 69_480_000, end: 69_484_999 }, + { code: "1302801", start: 69_490_000, end: 69_494_999 }, + { code: "1302108", start: 69_495_000, end: 69_499_999 }, + { code: "1301001", start: 69_500_000, end: 69_509_999 }, + { code: "1301951", start: 69_510_000, end: 69_519_999 }, + { code: "1302207", start: 69_520_000, end: 69_529_999 }, + { code: "1304260", start: 69_530_000, end: 69_539_999 }, + { code: "1300029", start: 69_540_000, end: 69_549_999 }, + { code: "1304203", start: 69_550_001, end: 69_559_999 }, + { code: "1303908", start: 69_600_000, end: 69_619_999 }, + { code: "1300060", start: 69_620_000, end: 69_629_999 }, + { code: "1300607", start: 69_630_000, end: 69_639_999 }, + { code: "1304062", start: 69_640_000, end: 69_649_999 }, + { code: "1300201", start: 69_650_000, end: 69_659_999 }, + { code: "1302306", start: 69_660_000, end: 69_669_999 }, + { code: "1301605", start: 69_670_000, end: 69_679_999 }, + { code: "1303700", start: 69_680_000, end: 69_684_999 }, + { code: "1304237", start: 69_685_000, end: 69_699_999 }, + { code: "1300409", start: 69_700_000, end: 69_729_999 }, + { code: "1303205", start: 69_730_000, end: 69_734_999 }, + { code: "1303536", start: 69_735_000, end: 69_739_999 }, + { code: "1303601", start: 69_740_000, end: 69_749_999 }, + { code: "1303809", start: 69_750_000, end: 69_799_999 }, + { code: "1301704", start: 69_800_000, end: 69_819_999 }, + { code: "1300904", start: 69_820_000, end: 69_829_999 }, + { code: "1302405", start: 69_830_000, end: 69_849_999 }, + { code: "1300706", start: 69_850_000, end: 69_859_999 }, + { code: "1303502", start: 69_860_000, end: 69_869_999 }, + { code: "1301506", start: 69_870_000, end: 69_879_999 }, + { code: "1301407", start: 69_880_000, end: 69_889_999 }, + { code: "1301803", start: 69_890_000, end: 69_894_999 }, + { code: "1301654", start: 69_895_000, end: 69_899_999 }, + { code: "1200401", start: 69_900_001, end: 69_924_999 }, + { code: "1200450", start: 69_925_000, end: 69_925_999 }, + { code: "1200138", start: 69_926_000, end: 69_926_999 }, + { code: "1200807", start: 69_927_000, end: 69_927_999 }, + { code: "1200385", start: 69_928_000, end: 69_929_999 }, + { code: "1200708", start: 69_930_000, end: 69_930_999 }, + { code: "1200179", start: 69_931_000, end: 69_931_999 }, + { code: "1200104", start: 69_932_000, end: 69_933_999 }, + { code: "1200252", start: 69_934_000, end: 69_934_999 }, + { code: "1200054", start: 69_935_000, end: 69_939_999 }, + { code: "1200500", start: 69_940_000, end: 69_944_999 }, + { code: "1200013", start: 69_945_000, end: 69_949_999 }, + { code: "1200344", start: 69_950_000, end: 69_954_999 }, + { code: "1200435", start: 69_955_000, end: 69_959_999 }, + { code: "1200302", start: 69_960_000, end: 69_969_999 }, + { code: "1200609", start: 69_970_000, end: 69_974_999 }, + { code: "1200328", start: 69_975_000, end: 69_979_999 }, + { code: "1200203", start: 69_980_000, end: 69_981_999 }, + { code: "1200393", start: 69_982_000, end: 69_982_999 }, + { code: "1200351", start: 69_983_000, end: 69_984_999 }, + { code: "1200427", start: 69_985_000, end: 69_989_999 }, + { code: "1200336", start: 69_990_000, end: 69_999_999 }, + { code: "5300108", start: 70_000_001, end: 72_799_999 }, + { code: "5212501", start: 72_800_001, end: 72_859_999 }, + { code: "5215231", start: 72_860_001, end: 72_869_999 }, + { code: "5221858", start: 72_870_001, end: 72_879_999 }, + { code: "5205497", start: 72_880_001, end: 72_899_999 }, + { code: "5219753", start: 72_900_001, end: 72_909_999 }, + { code: "5200258", start: 72_910_001, end: 72_929_999 }, + { code: "5200308", start: 72_930_000, end: 72_939_999 }, + { code: "5200100", start: 72_940_000, end: 72_959_999 }, + { code: "5205802", start: 72_960_000, end: 72_974_999 }, + { code: "5205513", start: 72_975_000, end: 72_979_999 }, + { code: "5217302", start: 72_980_000, end: 72_989_999 }, + { code: "5300108", start: 73_000_001, end: 73_699_999 }, + { code: "5215603", start: 73_700_000, end: 73_729_999 }, + { code: "5213053", start: 73_730_000, end: 73_739_999 }, + { code: "5205521", start: 73_740_000, end: 73_749_999 }, + { code: "5217609", start: 73_750_001, end: 73_759_999 }, + { code: "5220009", start: 73_760_000, end: 73_769_999 }, + { code: "5200605", start: 73_770_000, end: 73_779_999 }, + { code: "5200175", start: 73_780_000, end: 73_789_999 }, + { code: "5205307", start: 73_790_000, end: 73_794_999 }, + { code: "5221080", start: 73_795_000, end: 73_799_999 }, + { code: "5208004", start: 73_800_001, end: 73_819_999 }, + { code: "5214903", start: 73_820_000, end: 73_824_999 }, + { code: "5222203", start: 73_825_000, end: 73_829_999 }, + { code: "5213509", start: 73_830_000, end: 73_839_999 }, + { code: "5204904", start: 73_840_000, end: 73_849_999 }, + { code: "5206206", start: 73_850_000, end: 73_859_999 }, + { code: "5219803", start: 73_860_000, end: 73_864_999 }, + { code: "5208301", start: 73_865_000, end: 73_869_999 }, + { code: "5204003", start: 73_870_000, end: 73_889_999 }, + { code: "5207907", start: 73_890_000, end: 73_899_999 }, + { code: "5218300", start: 73_900_000, end: 73_909_999 }, + { code: "5209408", start: 73_910_000, end: 73_919_999 }, + { code: "5209903", start: 73_920_000, end: 73_929_999 }, + { code: "5220686", start: 73_930_000, end: 73_949_999 }, + { code: "5200803", start: 73_950_000, end: 73_969_999 }, + { code: "5212709", start: 73_970_000, end: 73_974_999 }, + { code: "5203962", start: 73_975_000, end: 73_979_999 }, + { code: "5206701", start: 73_980_000, end: 73_989_999 }, + { code: "5220702", start: 73_990_000, end: 73_999_999 }, + { code: "5208707", start: 74_000_001, end: 74_899_999 }, + { code: "5201405", start: 74_900_001, end: 74_999_999 }, + { code: "5201108", start: 75_000_001, end: 75_159_999 }, + { code: "5204854", start: 75_160_000, end: 75_164_999 }, + { code: "5215405", start: 75_165_000, end: 75_169_999 }, + { code: "5208400", start: 75_170_000, end: 75_174_999 }, + { code: "5221197", start: 75_175_000, end: 75_179_999 }, + { code: "5220603", start: 75_180_000, end: 75_183_999 }, + { code: "5208152", start: 75_184_000, end: 75_184_999 }, + { code: "5220264", start: 75_185_000, end: 75_189_999 }, + { code: "5212303", start: 75_190_000, end: 75_194_999 }, + { code: "5203559", start: 75_195_000, end: 75_199_999 }, + { code: "5217401", start: 75_200_000, end: 75_209_999 }, + { code: "5215801", start: 75_210_000, end: 75_219_999 }, + { code: "5219209", start: 75_220_000, end: 75_229_999 }, + { code: "5206305", start: 75_230_000, end: 75_239_999 }, + { code: "5203302", start: 75_240_000, end: 75_244_999 }, + { code: "5204557", start: 75_245_000, end: 75_249_999 }, + { code: "5220454", start: 75_250_001, end: 75_264_999 }, + { code: "5222005", start: 75_265_000, end: 75_279_999 }, + { code: "5215306", start: 75_280_000, end: 75_339_999 }, + { code: "5209705", start: 75_340_000, end: 75_344_999 }, + { code: "5200050", start: 75_345_000, end: 75_349_999 }, + { code: "5209200", start: 75_350_000, end: 75_354_999 }, + { code: "5221908", start: 75_355_000, end: 75_359_999 }, + { code: "5201801", start: 75_360_000, end: 75_369_999 }, + { code: "5208806", start: 75_370_000, end: 75_374_999 }, + { code: "5219738", start: 75_375_000, end: 75_379_999 }, + { code: "5221403", start: 75_380_001, end: 75_394_999 }, + { code: "5202809", start: 75_395_000, end: 75_395_999 }, + { code: "5204607", start: 75_396_000, end: 75_397_999 }, + { code: "5219100", start: 75_398_000, end: 75_399_999 }, + { code: "5210000", start: 75_400_000, end: 75_409_999 }, + { code: "5201603", start: 75_410_000, end: 75_419_999 }, + { code: "5206800", start: 75_420_000, end: 75_429_999 }, + { code: "5205208", start: 75_430_000, end: 75_439_999 }, + { code: "5203609", start: 75_440_000, end: 75_449_999 }, + { code: "5211404", start: 75_450_000, end: 75_454_999 }, + { code: "5219506", start: 75_455_000, end: 75_459_999 }, + { code: "5214507", start: 75_460_000, end: 75_469_999 }, + { code: "5215009", start: 75_470_000, end: 75_479_999 }, + { code: "5216809", start: 75_480_000, end: 75_489_999 }, + { code: "5219902", start: 75_490_000, end: 75_494_999 }, + { code: "5212055", start: 75_495_000, end: 75_499_999 }, + { code: "5211503", start: 75_500_001, end: 75_549_999 }, + { code: "5209937", start: 75_550_000, end: 75_554_999 }, + { code: "5222054", start: 75_555_000, end: 75_559_999 }, + { code: "5204250", start: 75_560_000, end: 75_569_999 }, + { code: "5203500", start: 75_570_000, end: 75_579_999 }, + { code: "5216007", start: 75_580_000, end: 75_599_999 }, + { code: "5209101", start: 75_600_000, end: 75_602_999 }, + { code: "5218052", start: 75_603_000, end: 75_609_999 }, + { code: "5212105", start: 75_610_000, end: 75_614_999 }, + { code: "5200506", start: 75_615_000, end: 75_619_999 }, + { code: "5217708", start: 75_620_000, end: 75_629_999 }, + { code: "5212600", start: 75_630_000, end: 75_634_999 }, + { code: "5206503", start: 75_635_000, end: 75_639_999 }, + { code: "5217104", start: 75_640_000, end: 75_644_999 }, + { code: "5218391", start: 75_645_000, end: 75_649_999 }, + { code: "5213806", start: 75_650_000, end: 75_659_999 }, + { code: "5203906", start: 75_660_000, end: 75_664_999 }, + { code: "5200209", start: 75_665_000, end: 75_669_999 }, + { code: "5212907", start: 75_670_000, end: 75_679_999 }, + { code: "5205901", start: 75_680_000, end: 75_689_999 }, + { code: "5204508", start: 75_690_000, end: 75_694_999 }, + { code: "5218789", start: 75_695_000, end: 75_699_999 }, + { code: "5205109", start: 75_700_001, end: 75_714_999 }, + { code: "5215504", start: 75_715_000, end: 75_719_999 }, + { code: "5221304", start: 75_720_000, end: 75_729_999 }, + { code: "5206909", start: 75_730_000, end: 75_739_999 }, + { code: "5208509", start: 75_740_000, end: 75_749_999 }, + { code: "5214804", start: 75_750_000, end: 75_759_999 }, + { code: "5206602", start: 75_760_000, end: 75_769_999 }, + { code: "5201207", start: 75_770_000, end: 75_779_999 }, + { code: "5210109", start: 75_780_000, end: 75_789_999 }, + { code: "5221809", start: 75_790_000, end: 75_794_999 }, + { code: "5204805", start: 75_795_000, end: 75_799_999 }, + { code: "5211909", start: 75_800_001, end: 75_809_999 }, + { code: "5211305", start: 75_810_000, end: 75_812_999 }, + { code: "5204300", start: 75_813_000, end: 75_814_999 }, + { code: "5210802", start: 75_815_000, end: 75_818_999 }, + { code: "5212253", start: 75_819_000, end: 75_819_999 }, + { code: "5220504", start: 75_820_000, end: 75_822_999 }, + { code: "5216452", start: 75_823_000, end: 75_824_999 }, + { code: "5201504", start: 75_825_000, end: 75_826_999 }, + { code: "5201454", start: 75_827_000, end: 75_827_999 }, + { code: "5205471", start: 75_828_000, end: 75_829_999 }, + { code: "5213103", start: 75_830_000, end: 75_834_999 }, + { code: "5218102", start: 75_835_000, end: 75_839_999 }, + { code: "5219407", start: 75_840_000, end: 75_844_999 }, + { code: "5215652", start: 75_845_000, end: 75_849_999 }, + { code: "5204409", start: 75_850_000, end: 75_854_999 }, + { code: "5207253", start: 75_855_000, end: 75_859_999 }, + { code: "5218508", start: 75_860_000, end: 75_864_999 }, + { code: "5209150", start: 75_865_000, end: 75_869_999 }, + { code: "5204102", start: 75_870_000, end: 75_879_999 }, + { code: "5216304", start: 75_880_000, end: 75_889_999 }, + { code: "5220405", start: 75_890_000, end: 75_899_999 }, + { code: "5218805", start: 75_900_001, end: 75_914_999 }, + { code: "5213756", start: 75_915_000, end: 75_919_999 }, + { code: "5219308", start: 75_920_000, end: 75_924_999 }, + { code: "5205059", start: 75_925_000, end: 75_929_999 }, + { code: "5213004", start: 75_930_000, end: 75_934_999 }, + { code: "5219712", start: 75_935_000, end: 75_939_999 }, + { code: "5207402", start: 75_940_000, end: 75_944_999 }, + { code: "5207352", start: 75_945_000, end: 75_949_999 }, + { code: "5211701", start: 75_950_000, end: 75_954_999 }, + { code: "5209952", start: 75_955_000, end: 75_959_999 }, + { code: "5200134", start: 75_960_000, end: 75_969_999 }, + { code: "5221551", start: 75_970_000, end: 75_979_999 }, + { code: "5216403", start: 75_980_000, end: 75_984_999 }, + { code: "5220058", start: 75_985_000, end: 75_989_999 }, + { code: "5215900", start: 75_990_000, end: 76_099_999 }, + { code: "5220108", start: 76_100_000, end: 76_104_999 }, + { code: "5207808", start: 76_105_000, end: 76_109_999 }, + { code: "5221502", start: 76_110_000, end: 76_119_999 }, + { code: "5202601", start: 76_120_000, end: 76_124_999 }, + { code: "5204201", start: 76_125_000, end: 76_129_999 }, + { code: "5211602", start: 76_130_000, end: 76_134_999 }, + { code: "5213400", start: 76_135_000, end: 76_139_999 }, + { code: "5200902", start: 76_140_000, end: 76_144_999 }, + { code: "5205703", start: 76_145_000, end: 76_149_999 }, + { code: "5213905", start: 76_150_000, end: 76_151_999 }, + { code: "5203939", start: 76_152_000, end: 76_154_999 }, + { code: "5200159", start: 76_155_000, end: 76_159_999 }, + { code: "5219001", start: 76_160_000, end: 76_164_999 }, + { code: "5200852", start: 76_165_000, end: 76_169_999 }, + { code: "5201306", start: 76_170_000, end: 76_179_999 }, + { code: "5214408", start: 76_180_000, end: 76_189_999 }, + { code: "5215702", start: 76_190_000, end: 76_194_999 }, + { code: "5205455", start: 76_195_000, end: 76_199_999 }, + { code: "5210208", start: 76_200_000, end: 76_204_999 }, + { code: "5210307", start: 76_205_000, end: 76_209_999 }, + { code: "5212006", start: 76_210_000, end: 76_219_999 }, + { code: "5207600", start: 76_220_000, end: 76_229_999 }, + { code: "5217203", start: 76_230_000, end: 76_234_999 }, + { code: "5202353", start: 76_235_000, end: 76_239_999 }, + { code: "5201702", start: 76_240_000, end: 76_244_999 }, + { code: "5203401", start: 76_245_000, end: 76_249_999 }, + { code: "5203104", start: 76_250_000, end: 76_254_999 }, + { code: "5213707", start: 76_255_000, end: 76_259_999 }, + { code: "5207105", start: 76_260_000, end: 76_264_999 }, + { code: "5219258", start: 76_265_000, end: 76_269_999 }, + { code: "5212204", start: 76_270_000, end: 76_279_999 }, + { code: "5203807", start: 76_280_000, end: 76_284_999 }, + { code: "5215207", start: 76_285_000, end: 76_289_999 }, + { code: "5211008", start: 76_290_000, end: 76_299_999 }, + { code: "5205406", start: 76_300_000, end: 76_303_999 }, + { code: "5210158", start: 76_304_000, end: 76_304_999 }, + { code: "5214861", start: 76_305_000, end: 76_309_999 }, + { code: "5218607", start: 76_310_000, end: 76_314_999 }, + { code: "5218706", start: 76_315_000, end: 76_319_999 }, + { code: "5219357", start: 76_320_000, end: 76_329_999 }, + { code: "5211800", start: 76_330_000, end: 76_334_999 }, + { code: "5221700", start: 76_335_000, end: 76_339_999 }, + { code: "5205000", start: 76_340_000, end: 76_342_999 }, + { code: "5220280", start: 76_343_000, end: 76_344_999 }, + { code: "5214705", start: 76_345_000, end: 76_349_999 }, + { code: "5218904", start: 76_350_000, end: 76_354_999 }, + { code: "5213855", start: 76_355_000, end: 76_359_999 }, + { code: "5210901", start: 76_360_000, end: 76_364_999 }, + { code: "5220157", start: 76_365_000, end: 76_369_999 }, + { code: "5216908", start: 76_372_000, end: 76_372_999 }, + { code: "5209457", start: 76_374_000, end: 76_374_999 }, + { code: "5209804", start: 76_375_000, end: 76_379_999 }, + { code: "5208608", start: 76_380_001, end: 76_389_999 }, + { code: "5203203", start: 76_390_000, end: 76_392_999 }, + { code: "5222302", start: 76_393_000, end: 76_393_999 }, + { code: "5219456", start: 76_395_000, end: 76_399_999 }, + { code: "5221601", start: 76_400_000, end: 76_409_999 }, + { code: "5204706", start: 76_410_000, end: 76_419_999 }, + { code: "5214606", start: 76_420_000, end: 76_439_999 }, + { code: "5204656", start: 76_440_000, end: 76_449_999 }, + { code: "5213087", start: 76_450_000, end: 76_459_999 }, + { code: "5221452", start: 76_460_000, end: 76_464_999 }, + { code: "5213772", start: 76_465_000, end: 76_469_999 }, + { code: "5208103", start: 76_470_000, end: 76_479_999 }, + { code: "5219605", start: 76_480_000, end: 76_484_999 }, + { code: "5207501", start: 76_485_000, end: 76_489_999 }, + { code: "5212808", start: 76_490_000, end: 76_492_999 }, + { code: "5200829", start: 76_493_000, end: 76_494_999 }, + { code: "5214879", start: 76_495_000, end: 76_499_999 }, + { code: "5219704", start: 76_500_000, end: 76_509_999 }, + { code: "5206404", start: 76_510_000, end: 76_514_999 }, + { code: "5204953", start: 76_515_000, end: 76_519_999 }, + { code: "5214838", start: 76_520_000, end: 76_524_999 }, + { code: "5221577", start: 76_525_000, end: 76_529_999 }, + { code: "5214051", start: 76_530_000, end: 76_539_999 }, + { code: "5214101", start: 76_540_000, end: 76_549_999 }, + { code: "5218003", start: 76_550_000, end: 76_554_999 }, + { code: "5203575", start: 76_555_000, end: 76_559_999 }, + { code: "5200555", start: 76_560_000, end: 76_579_999 }, + { code: "5215256", start: 76_580_000, end: 76_589_999 }, + { code: "5220207", start: 76_590_000, end: 76_599_999 }, + { code: "5208905", start: 76_600_000, end: 76_629_999 }, + { code: "5210406", start: 76_630_000, end: 76_639_999 }, + { code: "5221007", start: 76_640_000, end: 76_649_999 }, + { code: "5210562", start: 76_650_000, end: 76_659_999 }, + { code: "5210604", start: 76_660_000, end: 76_669_999 }, + { code: "5209606", start: 76_670_000, end: 76_679_999 }, + { code: "5211206", start: 76_680_000, end: 76_689_999 }, + { code: "5209291", start: 76_690_000, end: 76_699_999 }, + { code: "5214002", start: 76_700_000, end: 76_709_999 }, + { code: "5202502", start: 76_710_000, end: 76_719_999 }, + { code: "5202155", start: 76_720_000, end: 76_729_999 }, + { code: "5212956", start: 76_730_000, end: 76_739_999 }, + { code: "5207535", start: 76_740_000, end: 76_759_999 }, + { code: "1100205", start: 76_800_001, end: 76_849_999 }, + { code: "1100106", start: 76_850_000, end: 76_856_999 }, + { code: "1100338", start: 76_857_000, end: 76_859_999 }, + { code: "1100809", start: 76_860_000, end: 76_860_999 }, + { code: "1101104", start: 76_861_000, end: 76_861_999 }, + { code: "1100403", start: 76_862_000, end: 76_862_999 }, + { code: "1100262", start: 76_863_000, end: 76_863_999 }, + { code: "1100940", start: 76_864_000, end: 76_865_999 }, + { code: "1101609", start: 76_866_000, end: 76_866_999 }, + { code: "1101757", start: 76_867_000, end: 76_867_999 }, + { code: "1100130", start: 76_868_000, end: 76_869_999 }, + { code: "1100023", start: 76_870_001, end: 76_879_999 }, + { code: "1100452", start: 76_880_000, end: 76_886_999 }, + { code: "1100700", start: 76_887_000, end: 76_887_999 }, + { code: "1101401", start: 76_888_000, end: 76_888_999 }, + { code: "1100601", start: 76_889_000, end: 76_889_999 }, + { code: "1100114", start: 76_890_000, end: 76_897_999 }, + { code: "1101005", start: 76_898_000, end: 76_899_999 }, + { code: "1100122", start: 76_900_001, end: 76_915_999 }, + { code: "1100254", start: 76_916_000, end: 76_918_999 }, + { code: "1101203", start: 76_919_000, end: 76_919_999 }, + { code: "1100155", start: 76_920_000, end: 76_922_999 }, + { code: "1101807", start: 76_923_000, end: 76_923_999 }, + { code: "1101435", start: 76_924_000, end: 76_925_999 }, + { code: "1101302", start: 76_926_000, end: 76_927_999 }, + { code: "1101559", start: 76_928_000, end: 76_928_999 }, + { code: "1101708", start: 76_929_000, end: 76_929_999 }, + { code: "1100346", start: 76_930_000, end: 76_931_999 }, + { code: "1100320", start: 76_932_000, end: 76_933_999 }, + { code: "1101500", start: 76_934_000, end: 76_934_999 }, + { code: "1101492", start: 76_935_000, end: 76_936_999 }, + { code: "1100080", start: 76_937_000, end: 76_939_999 }, + { code: "1100288", start: 76_940_000, end: 76_947_999 }, + { code: "1100908", start: 76_948_000, end: 76_949_999 }, + { code: "1100296", start: 76_950_000, end: 76_951_999 }, + { code: "1100379", start: 76_952_000, end: 76_953_999 }, + { code: "1100015", start: 76_954_000, end: 76_955_999 }, + { code: "1100502", start: 76_956_000, end: 76_957_999 }, + { code: "1100148", start: 76_958_000, end: 76_959_999 }, + { code: "1100049", start: 76_960_001, end: 76_969_999 }, + { code: "1100189", start: 76_970_000, end: 76_973_999 }, + { code: "1100098", start: 76_974_000, end: 76_975_999 }, + { code: "1101476", start: 76_976_000, end: 76_976_999 }, + { code: "1101484", start: 76_977_000, end: 76_978_999 }, + { code: "1101450", start: 76_979_000, end: 76_979_999 }, + { code: "1100304", start: 76_980_001, end: 76_989_999 }, + { code: "1100924", start: 76_990_000, end: 76_992_999 }, + { code: "1100064", start: 76_993_000, end: 76_993_999 }, + { code: "1100031", start: 76_994_000, end: 76_994_999 }, + { code: "1100072", start: 76_995_000, end: 76_996_999 }, + { code: "1100056", start: 76_997_000, end: 76_998_999 }, + { code: "1101468", start: 76_999_000, end: 76_999_999 }, + { code: "1721000", start: 77_000_001, end: 77_299_999 }, + { code: "1707009", start: 77_300_000, end: 77_302_999 }, + { code: "1718659", start: 77_303_000, end: 77_304_999 }, + { code: "1705607", start: 77_305_000, end: 77_307_999 }, + { code: "1720937", start: 77_308_000, end: 77_309_999 }, + { code: "1700400", start: 77_310_000, end: 77_314_999 }, + { code: "1717800", start: 77_315_000, end: 77_317_999 }, + { code: "1715259", start: 77_318_000, end: 77_319_999 }, + { code: "1720903", start: 77_320_000, end: 77_324_999 }, + { code: "1702703", start: 77_325_000, end: 77_327_999 }, + { code: "1712157", start: 77_328_000, end: 77_329_999 }, + { code: "1702406", start: 77_330_000, end: 77_349_999 }, + { code: "1705557", start: 77_350_000, end: 77_352_999 }, + { code: "1715150", start: 77_353_000, end: 77_359_999 }, + { code: "1716208", start: 77_360_000, end: 77_364_999 }, + { code: "1715754", start: 77_365_000, end: 77_367_999 }, + { code: "1720259", start: 77_368_000, end: 77_369_999 }, + { code: "1714203", start: 77_370_000, end: 77_374_999 }, + { code: "1718907", start: 77_375_000, end: 77_377_999 }, + { code: "1705102", start: 77_378_000, end: 77_379_999 }, + { code: "1717008", start: 77_380_000, end: 77_389_999 }, + { code: "1720499", start: 77_390_000, end: 77_394_999 }, + { code: "1718006", start: 77_395_000, end: 77_399_999 }, + { code: "1709500", start: 77_400_001, end: 77_449_999 }, + { code: "1711506", start: 77_450_000, end: 77_452_999 }, + { code: "1703867", start: 77_453_000, end: 77_454_999 }, + { code: "1700350", start: 77_455_000, end: 77_457_999 }, + { code: "1720853", start: 77_458_000, end: 77_459_999 }, + { code: "1716604", start: 77_460_000, end: 77_462_999 }, + { code: "1706258", start: 77_463_000, end: 77_464_999 }, + { code: "1707652", start: 77_465_000, end: 77_469_999 }, + { code: "1708205", start: 77_470_000, end: 77_474_999 }, + { code: "1702000", start: 77_475_000, end: 77_477_999 }, + { code: "1718840", start: 77_478_000, end: 77_479_999 }, + { code: "1700707", start: 77_480_000, end: 77_482_999 }, + { code: "1720978", start: 77_483_000, end: 77_484_999 }, + { code: "1707306", start: 77_485_000, end: 77_489_999 }, + { code: "1706100", start: 77_490_000, end: 77_492_999 }, + { code: "1711902", start: 77_493_000, end: 77_494_999 }, + { code: "1715002", start: 77_495_000, end: 77_499_999 }, + { code: "1718204", start: 77_500_000, end: 77_552_999 }, + { code: "1709807", start: 77_553_000, end: 77_554_999 }, + { code: "1707553", start: 77_555_000, end: 77_557_999 }, + { code: "1715507", start: 77_558_000, end: 77_559_999 }, + { code: "1703701", start: 77_560_000, end: 77_564_999 }, + { code: "1718899", start: 77_565_000, end: 77_569_999 }, + { code: "1717503", start: 77_570_000, end: 77_574_999 }, + { code: "1704600", start: 77_575_000, end: 77_579_999 }, + { code: "1720655", start: 77_580_000, end: 77_584_999 }, + { code: "1713601", start: 77_585_000, end: 77_589_999 }, + { code: "1717909", start: 77_590_000, end: 77_592_999 }, + { code: "1712702", start: 77_593_000, end: 77_599_999 }, + { code: "1716109", start: 77_600_000, end: 77_602_999 }, + { code: "1718451", start: 77_603_000, end: 77_604_999 }, + { code: "1720150", start: 77_605_000, end: 77_609_999 }, + { code: "1715101", start: 77_610_000, end: 77_612_999 }, + { code: "1711951", start: 77_613_000, end: 77_614_999 }, + { code: "1719004", start: 77_615_000, end: 77_619_999 }, + { code: "1701101", start: 77_620_000, end: 77_629_999 }, + { code: "1712405", start: 77_630_000, end: 77_634_999 }, + { code: "1718758", start: 77_635_000, end: 77_639_999 }, + { code: "1721109", start: 77_640_000, end: 77_644_999 }, + { code: "1712009", start: 77_645_000, end: 77_649_999 }, + { code: "1713205", start: 77_650_000, end: 77_654_999 }, + { code: "1718709", start: 77_655_000, end: 77_659_999 }, + { code: "1713304", start: 77_660_000, end: 77_664_999 }, + { code: "1703107", start: 77_665_000, end: 77_669_999 }, + { code: "1707108", start: 77_670_000, end: 77_672_999 }, + { code: "1713700", start: 77_673_000, end: 77_674_999 }, + { code: "1712504", start: 77_675_000, end: 77_679_999 }, + { code: "1703909", start: 77_680_000, end: 77_684_999 }, + { code: "1707207", start: 77_685_000, end: 77_689_999 }, + { code: "1701903", start: 77_690_000, end: 77_692_999 }, + { code: "1700251", start: 77_693_000, end: 77_694_999 }, + { code: "1708304", start: 77_695_000, end: 77_699_999 }, + { code: "1709302", start: 77_700_000, end: 77_703_999 }, + { code: "1721257", start: 77_704_000, end: 77_707_999 }, + { code: "1708254", start: 77_708_000, end: 77_709_999 }, + { code: "1716505", start: 77_710_000, end: 77_713_999 }, + { code: "1703305", start: 77_714_000, end: 77_715_999 }, + { code: "1718881", start: 77_716_000, end: 77_717_999 }, + { code: "1710904", start: 77_718_000, end: 77_719_999 }, + { code: "1710508", start: 77_720_000, end: 77_722_999 }, + { code: "1704105", start: 77_723_000, end: 77_724_999 }, + { code: "1716703", start: 77_725_000, end: 77_729_999 }, + { code: "1716653", start: 77_730_000, end: 77_732_999 }, + { code: "1718501", start: 77_733_000, end: 77_734_999 }, + { code: "1703602", start: 77_735_000, end: 77_739_999 }, + { code: "1711100", start: 77_740_000, end: 77_742_999 }, + { code: "1721307", start: 77_743_000, end: 77_744_999 }, + { code: "1718402", start: 77_745_000, end: 77_749_999 }, + { code: "1706001", start: 77_750_000, end: 77_752_999 }, + { code: "1711803", start: 77_753_000, end: 77_754_999 }, + { code: "1703206", start: 77_755_000, end: 77_759_999 }, + { code: "1705508", start: 77_760_000, end: 77_764_999 }, + { code: "1703073", start: 77_765_000, end: 77_769_999 }, + { code: "1709005", start: 77_770_000, end: 77_776_999 }, + { code: "1703842", start: 77_777_000, end: 77_779_999 }, + { code: "1702307", start: 77_780_000, end: 77_782_999 }, + { code: "1703057", start: 77_783_000, end: 77_784_999 }, + { code: "1716307", start: 77_785_000, end: 77_789_999 }, + { code: "1714880", start: 77_790_000, end: 77_794_999 }, + { code: "1707702", start: 77_795_000, end: 77_797_999 }, + { code: "1715705", start: 77_798_000, end: 77_799_999 }, + { code: "1702109", start: 77_800_001, end: 77_839_999 }, + { code: "1703883", start: 77_840_000, end: 77_844_999 }, + { code: "1701309", start: 77_845_000, end: 77_847_999 }, + { code: "1718865", start: 77_848_000, end: 77_849_999 }, + { code: "1713957", start: 77_850_000, end: 77_854_999 }, + { code: "1702158", start: 77_855_000, end: 77_859_999 }, + { code: "1722081", start: 77_860_000, end: 77_869_999 }, + { code: "1703008", start: 77_870_000, end: 77_879_999 }, + { code: "1722107", start: 77_880_000, end: 77_884_999 }, + { code: "1720002", start: 77_885_000, end: 77_887_999 }, + { code: "1717206", start: 77_888_000, end: 77_889_999 }, + { code: "1701002", start: 77_890_000, end: 77_892_999 }, + { code: "1718550", start: 77_893_000, end: 77_894_999 }, + { code: "1714302", start: 77_895_000, end: 77_899_999 }, + { code: "1721208", start: 77_900_000, end: 77_902_999 }, + { code: "1712454", start: 77_903_000, end: 77_904_999 }, + { code: "1701051", start: 77_905_000, end: 77_907_999 }, + { code: "1700301", start: 77_908_000, end: 77_909_999 }, + { code: "1706506", start: 77_910_000, end: 77_912_999 }, + { code: "1713809", start: 77_913_000, end: 77_914_999 }, + { code: "1703826", start: 77_915_000, end: 77_917_999 }, + { code: "1712801", start: 77_918_000, end: 77_919_999 }, + { code: "1710706", start: 77_920_000, end: 77_924_999 }, + { code: "1720200", start: 77_925_000, end: 77_929_999 }, + { code: "1702901", start: 77_930_000, end: 77_939_999 }, + { code: "1720804", start: 77_940_000, end: 77_949_999 }, + { code: "1702208", start: 77_950_000, end: 77_957_999 }, + { code: "1720101", start: 77_958_000, end: 77_959_999 }, + { code: "1702554", start: 77_960_000, end: 77_969_999 }, + { code: "1718303", start: 77_970_000, end: 77_979_999 }, + { code: "1718808", start: 77_980_000, end: 77_984_999 }, + { code: "1703891", start: 77_985_000, end: 77_989_999 }, + { code: "1720309", start: 77_990_000, end: 77_992_999 }, + { code: "1707405", start: 77_993_000, end: 77_994_999 }, + { code: "1703800", start: 77_995_000, end: 77_999_999 }, + { code: "5103403", start: 78_000_001, end: 78_109_999 }, + { code: "5108402", start: 78_110_001, end: 78_169_999 }, + { code: "5106109", start: 78_170_000, end: 78_174_999 }, + { code: "5106505", start: 78_175_000, end: 78_179_999 }, + { code: "5107800", start: 78_180_000, end: 78_189_999 }, + { code: "5101605", start: 78_190_000, end: 78_194_999 }, + { code: "5103007", start: 78_195_000, end: 78_199_999 }, + { code: "5102504", start: 78_200_000, end: 78_236_999 }, + { code: "5103437", start: 78_237_000, end: 78_239_999 }, + { code: "5106828", start: 78_240_000, end: 78_242_999 }, + { code: "5106182", start: 78_243_000, end: 78_244_999 }, + { code: "5105507", start: 78_245_000, end: 78_249_999 }, + { code: "5106752", start: 78_250_000, end: 78_252_999 }, + { code: "5108352", start: 78_253_000, end: 78_253_999 }, + { code: "5103361", start: 78_254_000, end: 78_254_999 }, + { code: "5105002", start: 78_255_000, end: 78_259_999 }, + { code: "5101258", start: 78_260_000, end: 78_264_999 }, + { code: "5107156", start: 78_265_000, end: 78_269_999 }, + { code: "5107750", start: 78_270_000, end: 78_274_999 }, + { code: "5107206", start: 78_275_000, end: 78_277_999 }, + { code: "5105234", start: 78_278_000, end: 78_279_999 }, + { code: "5105622", start: 78_280_000, end: 78_284_999 }, + { code: "5107107", start: 78_285_000, end: 78_289_999 }, + { code: "5103809", start: 78_290_000, end: 78_292_999 }, + { code: "5103957", start: 78_293_000, end: 78_294_999 }, + { code: "5104500", start: 78_295_000, end: 78_299_999 }, + { code: "5107958", start: 78_300_000, end: 78_306_999 }, + { code: "5102686", start: 78_307_000, end: 78_309_999 }, + { code: "5103304", start: 78_310_000, end: 78_319_999 }, + { code: "5105150", start: 78_320_000, end: 78_324_999 }, + { code: "5101407", start: 78_325_000, end: 78_329_999 }, + { code: "5103379", start: 78_330_000, end: 78_334_999 }, + { code: "5103254", start: 78_335_000, end: 78_337_999 }, + { code: "5107578", start: 78_338_000, end: 78_339_999 }, + { code: "5105176", start: 78_340_000, end: 78_344_999 }, + { code: "5102850", start: 78_345_000, end: 78_349_999 }, + { code: "5101902", start: 78_350_000, end: 78_359_999 }, + { code: "5102637", start: 78_360_000, end: 78_364_999 }, + { code: "5107875", start: 78_365_000, end: 78_369_999 }, + { code: "5106232", start: 78_370_000, end: 78_379_999 }, + { code: "5103452", start: 78_380_000, end: 78_389_999 }, + { code: "5101704", start: 78_390_000, end: 78_397_999 }, + { code: "5106851", start: 78_398_000, end: 78_399_999 }, + { code: "5103502", start: 78_400_000, end: 78_409_999 }, + { code: "5100508", start: 78_410_000, end: 78_414_999 }, + { code: "5108857", start: 78_415_000, end: 78_419_999 }, + { code: "5101308", start: 78_420_000, end: 78_424_999 }, + { code: "5107263", start: 78_425_000, end: 78_429_999 }, + { code: "5106000", start: 78_430_000, end: 78_434_999 }, + { code: "5107305", start: 78_435_000, end: 78_444_999 }, + { code: "5108907", start: 78_445_000, end: 78_449_999 }, + { code: "5106224", start: 78_450_000, end: 78_452_999 }, + { code: "5107768", start: 78_453_000, end: 78_454_999 }, + { code: "5105259", start: 78_455_000, end: 78_459_999 }, + { code: "5105903", start: 78_460_000, end: 78_469_999 }, + { code: "5107701", start: 78_470_000, end: 78_479_999 }, + { code: "5100102", start: 78_480_000, end: 78_489_999 }, + { code: "5104906", start: 78_490_000, end: 78_499_999 }, + { code: "5103205", start: 78_500_000, end: 78_504_999 }, + { code: "5108055", start: 78_505_000, end: 78_507_999 }, + { code: "5108808", start: 78_508_000, end: 78_509_999 }, + { code: "5104559", start: 78_510_000, end: 78_514_999 }, + { code: "5106216", start: 78_515_000, end: 78_519_999 }, + { code: "5104104", start: 78_520_000, end: 78_524_999 }, + { code: "5105606", start: 78_525_000, end: 78_527_999 }, + { code: "5106265", start: 78_528_000, end: 78_529_999 }, + { code: "5106422", start: 78_530_000, end: 78_534_999 }, + { code: "5105580", start: 78_535_000, end: 78_539_999 }, + { code: "5103056", start: 78_540_000, end: 78_542_999 }, + { code: "5108303", start: 78_543_000, end: 78_544_999 }, + { code: "5107248", start: 78_545_000, end: 78_547_999 }, + { code: "5106190", start: 78_548_000, end: 78_549_999 }, + { code: "5107909", start: 78_550_001, end: 78_559_999 }, + { code: "5106802", start: 78_560_000, end: 78_562_999 }, + { code: "5107941", start: 78_563_000, end: 78_564_999 }, + { code: "5106158", start: 78_565_000, end: 78_569_999 }, + { code: "5106273", start: 78_570_000, end: 78_572_999 }, + { code: "5108006", start: 78_573_000, end: 78_574_999 }, + { code: "5105101", start: 78_575_000, end: 78_577_999 }, + { code: "5104526", start: 78_578_000, end: 78_578_999 }, + { code: "5104542", start: 78_579_000, end: 78_579_999 }, + { code: "5100250", start: 78_580_000, end: 78_586_999 }, + { code: "5102793", start: 78_587_000, end: 78_589_999 }, + { code: "5106299", start: 78_590_000, end: 78_592_999 }, + { code: "5108956", start: 78_593_000, end: 78_594_999 }, + { code: "5100805", start: 78_595_000, end: 78_599_999 }, + { code: "5101803", start: 78_600_000, end: 78_609_999 }, + { code: "5106703", start: 78_610_000, end: 78_612_999 }, + { code: "5107198", start: 78_613_000, end: 78_614_999 }, + { code: "5101209", start: 78_615_000, end: 78_619_999 }, + { code: "5103908", start: 78_620_000, end: 78_624_999 }, + { code: "5106281", start: 78_625_000, end: 78_627_999 }, + { code: "5107792", start: 78_628_000, end: 78_629_999 }, + { code: "5102603", start: 78_630_000, end: 78_634_999 }, + { code: "5100201", start: 78_635_000, end: 78_637_999 }, + { code: "5106174", start: 78_638_000, end: 78_639_999 }, + { code: "5102702", start: 78_640_000, end: 78_642_999 }, + { code: "5107065", start: 78_643_000, end: 78_644_999 }, + { code: "5108600", start: 78_645_000, end: 78_649_999 }, + { code: "5107776", start: 78_650_000, end: 78_651_999 }, + { code: "5103353", start: 78_652_000, end: 78_654_999 }, + { code: "5106778", start: 78_655_000, end: 78_657_999 }, + { code: "5102694", start: 78_658_000, end: 78_659_999 }, + { code: "5105309", start: 78_660_000, end: 78_662_999 }, + { code: "5107354", start: 78_663_000, end: 78_663_999 }, + { code: "5107743", start: 78_664_000, end: 78_664_999 }, + { code: "5100359", start: 78_665_000, end: 78_667_999 }, + { code: "5107883", start: 78_668_000, end: 78_669_999 }, + { code: "5107859", start: 78_670_000, end: 78_673_999 }, + { code: "5106315", start: 78_674_000, end: 78_674_999 }, + { code: "5107180", start: 78_675_000, end: 78_677_999 }, + { code: "5101852", start: 78_678_000, end: 78_679_999 }, + { code: "5103106", start: 78_680_000, end: 78_684_999 }, + { code: "5101001", start: 78_685_000, end: 78_689_999 }, + { code: "5106257", start: 78_690_000, end: 78_694_999 }, + { code: "5108204", start: 78_695_000, end: 78_697_999 }, + { code: "5106653", start: 78_698_000, end: 78_699_999 }, + { code: "5107602", start: 78_700_001, end: 78_759_999 }, + { code: "5104203", start: 78_760_000, end: 78_769_999 }, + { code: "5100409", start: 78_770_000, end: 78_772_999 }, + { code: "5107297", start: 78_773_000, end: 78_774_999 }, + { code: "5108105", start: 78_775_000, end: 78_779_999 }, + { code: "5100300", start: 78_780_000, end: 78_784_999 }, + { code: "5100607", start: 78_785_000, end: 78_789_999 }, + { code: "5104609", start: 78_790_000, end: 78_794_999 }, + { code: "5106372", start: 78_795_000, end: 78_799_999 }, + { code: "5107008", start: 78_800_000, end: 78_809_999 }, + { code: "5105200", start: 78_810_000, end: 78_819_999 }, + { code: "5104807", start: 78_820_000, end: 78_829_999 }, + { code: "5103601", start: 78_830_000, end: 78_834_999 }, + { code: "5107404", start: 78_835_000, end: 78_839_999 }, + { code: "5102678", start: 78_840_000, end: 78_849_999 }, + { code: "5107040", start: 78_850_000, end: 78_854_999 }, + { code: "5106455", start: 78_855_000, end: 78_859_999 }, + { code: "5106208", start: 78_860_000, end: 78_869_999 }, + { code: "5106307", start: 78_870_000, end: 78_874_999 }, + { code: "5103858", start: 78_875_000, end: 78_879_999 }, + { code: "5108501", start: 78_880_000, end: 78_884_999 }, + { code: "5103700", start: 78_885_000, end: 78_886_999 }, + { code: "5106240", start: 78_888_000, end: 78_889_999 }, + { code: "5107925", start: 78_890_000, end: 78_899_999 }, + { code: "5002704", start: 79_000_001, end: 79_129_999 }, + { code: "5007208", start: 79_130_000, end: 79_139_999 }, + { code: "5006002", start: 79_140_000, end: 79_149_999 }, + { code: "5005400", start: 79_150_000, end: 79_169_999 }, + { code: "5007901", start: 79_170_000, end: 79_179_999 }, + { code: "5007109", start: 79_180_000, end: 79_189_999 }, + { code: "5008008", start: 79_190_000, end: 79_199_999 }, + { code: "5001102", start: 79_200_000, end: 79_209_999 }, + { code: "5000708", start: 79_210_000, end: 79_214_999 }, + { code: "5003488", start: 79_215_000, end: 79_219_999 }, + { code: "5005806", start: 79_220_000, end: 79_229_999 }, + { code: "5004106", start: 79_230_000, end: 79_239_999 }, + { code: "5005004", start: 79_240_000, end: 79_259_999 }, + { code: "5002100", start: 79_260_000, end: 79_269_999 }, + { code: "5002803", start: 79_270_000, end: 79_279_999 }, + { code: "5006903", start: 79_280_000, end: 79_289_999 }, + { code: "5002209", start: 79_290_000, end: 79_299_999 }, + { code: "5003207", start: 79_300_001, end: 79_369_999 }, + { code: "5005202", start: 79_370_000, end: 79_379_999 }, + { code: "5005608", start: 79_380_000, end: 79_389_999 }, + { code: "5002159", start: 79_390_000, end: 79_399_999 }, + { code: "5003306", start: 79_400_000, end: 79_409_999 }, + { code: "5006408", start: 79_410_000, end: 79_414_999 }, + { code: "5007935", start: 79_415_000, end: 79_419_999 }, + { code: "5002605", start: 79_420_000, end: 79_427_999 }, + { code: "5003900", start: 79_428_000, end: 79_429_999 }, + { code: "5001508", start: 79_430_000, end: 79_439_999 }, + { code: "5004908", start: 79_440_000, end: 79_449_999 }, + { code: "5007505", start: 79_450_000, end: 79_459_999 }, + { code: "5003108", start: 79_460_000, end: 79_469_999 }, + { code: "5007307", start: 79_470_000, end: 79_479_999 }, + { code: "5007406", start: 79_480_000, end: 79_489_999 }, + { code: "5007695", start: 79_490_000, end: 79_499_999 }, + { code: "5006309", start: 79_500_000, end: 79_529_999 }, + { code: "5000252", start: 79_530_000, end: 79_539_999 }, + { code: "5002902", start: 79_540_000, end: 79_549_999 }, + { code: "5003256", start: 79_550_000, end: 79_555_999 }, + { code: "5006275", start: 79_556_000, end: 79_559_999 }, + { code: "5002951", start: 79_560_000, end: 79_569_999 }, + { code: "5001003", start: 79_570_000, end: 79_579_999 }, + { code: "5004403", start: 79_580_000, end: 79_589_999 }, + { code: "5007802", start: 79_590_000, end: 79_599_999 }, + { code: "5008305", start: 79_600_001, end: 79_669_999 }, + { code: "5002308", start: 79_670_000, end: 79_679_999 }, + { code: "5000203", start: 79_680_000, end: 79_689_999 }, + { code: "5007554", start: 79_690_000, end: 79_699_999 }, + { code: "5003801", start: 79_700_000, end: 79_709_999 }, + { code: "5008404", start: 79_710_000, end: 79_719_999 }, + { code: "5005103", start: 79_720_000, end: 79_729_999 }, + { code: "5004007", start: 79_730_000, end: 79_739_999 }, + { code: "5004700", start: 79_740_000, end: 79_744_999 }, + { code: "5006259", start: 79_745_000, end: 79_749_999 }, + { code: "5006200", start: 79_750_000, end: 79_759_999 }, + { code: "5002001", start: 79_760_000, end: 79_764_999 }, + { code: "5007976", start: 79_765_000, end: 79_769_999 }, + { code: "5000807", start: 79_770_000, end: 79_779_999 }, + { code: "5001904", start: 79_780_000, end: 79_784_999 }, + { code: "5000856", start: 79_785_000, end: 79_789_999 }, + { code: "5003454", start: 79_790_000, end: 79_799_999 }, + { code: "5003702", start: 79_800_001, end: 79_879_999 }, + { code: "5003504", start: 79_880_000, end: 79_889_999 }, + { code: "5004502", start: 79_890_000, end: 79_899_999 }, + { code: "5006606", start: 79_900_001, end: 79_909_999 }, + { code: "5000906", start: 79_910_000, end: 79_919_999 }, + { code: "5005251", start: 79_920_000, end: 79_924_999 }, + { code: "5006358", start: 79_925_000, end: 79_929_999 }, + { code: "5001243", start: 79_930_000, end: 79_934_999 }, + { code: "5007703", start: 79_935_000, end: 79_939_999 }, + { code: "5002407", start: 79_940_000, end: 79_949_999 }, + { code: "5005707", start: 79_950_000, end: 79_954_999 }, + { code: "5005152", start: 79_955_000, end: 79_959_999 }, + { code: "5004304", start: 79_960_000, end: 79_964_999 }, + { code: "5004601", start: 79_965_000, end: 79_969_999 }, + { code: "5003751", start: 79_970_000, end: 79_974_999 }, + { code: "5007950", start: 79_975_000, end: 79_979_999 }, + { code: "5005681", start: 79_980_000, end: 79_984_999 }, + { code: "5004809", start: 79_985_000, end: 79_989_999 }, + { code: "5000609", start: 79_990_000, end: 79_994_999 }, + { code: "5003157", start: 79_995_000, end: 79_999_999 }, + { code: "4106902", start: 80_000_001, end: 82_999_999 }, + { code: "4125506", start: 83_000_001, end: 83_189_999 }, + { code: "4127601", start: 83_190_000, end: 83_199_999 }, + { code: "4118204", start: 83_200_001, end: 83_254_999 }, + { code: "4119954", start: 83_255_000, end: 83_259_999 }, + { code: "4115705", start: 83_260_000, end: 83_279_999 }, + { code: "4109609", start: 83_280_000, end: 83_299_999 }, + { code: "4119509", start: 83_300_001, end: 83_319_999 }, + { code: "4119152", start: 83_320_001, end: 83_349_999 }, + { code: "4116208", start: 83_350_000, end: 83_369_999 }, + { code: "4101200", start: 83_370_000, end: 83_389_999 }, + { code: "4109500", start: 83_390_000, end: 83_399_999 }, + { code: "4105805", start: 83_400_001, end: 83_419_999 }, + { code: "4120804", start: 83_420_000, end: 83_429_999 }, + { code: "4104006", start: 83_430_000, end: 83_449_999 }, + { code: "4103107", start: 83_450_000, end: 83_479_999 }, + { code: "4127882", start: 83_480_000, end: 83_489_999 }, + { code: "4100202", start: 83_490_000, end: 83_499_999 }, + { code: "4100400", start: 83_500_001, end: 83_534_999 }, + { code: "4104253", start: 83_535_000, end: 83_539_999 }, + { code: "4122206", start: 83_540_000, end: 83_559_999 }, + { code: "4111258", start: 83_560_000, end: 83_569_999 }, + { code: "4105201", start: 83_570_000, end: 83_589_999 }, + { code: "4128633", start: 83_590_000, end: 83_599_999 }, + { code: "4104204", start: 83_600_001, end: 83_649_999 }, + { code: "4102307", start: 83_650_000, end: 83_699_999 }, + { code: "4101804", start: 83_700_001, end: 83_729_999 }, + { code: "4106209", start: 83_730_000, end: 83_749_999 }, + { code: "4113205", start: 83_750_000, end: 83_799_999 }, + { code: "4114302", start: 83_800_000, end: 83_819_999 }, + { code: "4107652", start: 83_820_001, end: 83_839_999 }, + { code: "4121208", start: 83_840_000, end: 83_849_999 }, + { code: "4100301", start: 83_850_000, end: 83_859_999 }, + { code: "4119103", start: 83_860_000, end: 83_869_999 }, + { code: "4104105", start: 83_870_000, end: 83_879_999 }, + { code: "4122305", start: 83_880_000, end: 83_899_999 }, + { code: "4125605", start: 83_900_000, end: 83_979_999 }, + { code: "4101309", start: 83_980_000, end: 83_999_999 }, + { code: "4119905", start: 84_000_001, end: 84_129_999 }, + { code: "4117701", start: 84_130_000, end: 84_139_999 }, + { code: "4120101", start: 84_140_000, end: 84_144_999 }, + { code: "4104659", start: 84_145_000, end: 84_149_999 }, + { code: "4125100", start: 84_150_000, end: 84_159_999 }, + { code: "4104907", start: 84_160_001, end: 84_199_999 }, + { code: "4112009", start: 84_200_000, end: 84_219_999 }, + { code: "4126306", start: 84_220_000, end: 84_239_999 }, + { code: "4119400", start: 84_240_000, end: 84_249_999 }, + { code: "4110078", start: 84_250_000, end: 84_259_999 }, + { code: "4127106", start: 84_260_001, end: 84_279_999 }, + { code: "4107009", start: 84_280_000, end: 84_284_999 }, + { code: "4107751", start: 84_285_000, end: 84_289_999 }, + { code: "4126207", start: 84_290_000, end: 84_299_999 }, + { code: "4127502", start: 84_300_000, end: 84_319_999 }, + { code: "4121703", start: 84_320_000, end: 84_344_999 }, + { code: "4128534", start: 84_345_000, end: 84_349_999 }, + { code: "4117305", start: 84_350_000, end: 84_399_999 }, + { code: "4120606", start: 84_400_000, end: 84_429_999 }, + { code: "4110102", start: 84_430_000, end: 84_434_999 }, + { code: "4108957", start: 84_435_000, end: 84_449_999 }, + { code: "4110508", start: 84_450_000, end: 84_459_999 }, + { code: "4111407", start: 84_460_000, end: 84_469_999 }, + { code: "4104402", start: 84_470_000, end: 84_499_999 }, + { code: "4110706", start: 84_500_000, end: 84_529_999 }, + { code: "4127007", start: 84_530_000, end: 84_534_999 }, + { code: "4107736", start: 84_535_000, end: 84_549_999 }, + { code: "4121505", start: 84_550_000, end: 84_559_999 }, + { code: "4122008", start: 84_560_000, end: 84_569_999 }, + { code: "4113908", start: 84_570_000, end: 84_599_999 }, + { code: "4128203", start: 84_600_001, end: 84_614_999 }, + { code: "4120309", start: 84_615_000, end: 84_619_999 }, + { code: "4106803", start: 84_620_000, end: 84_629_999 }, + { code: "4118600", start: 84_630_000, end: 84_634_999 }, + { code: "4118709", start: 84_635_000, end: 84_639_999 }, + { code: "4102901", start: 84_640_000, end: 84_659_999 }, + { code: "4108502", start: 84_660_000, end: 84_899_999 }, + { code: "4109708", start: 84_900_000, end: 84_919_999 }, + { code: "4112306", start: 84_920_000, end: 84_924_999 }, + { code: "4119202", start: 84_925_000, end: 84_929_999 }, + { code: "4111704", start: 84_930_000, end: 84_934_999 }, + { code: "4127809", start: 84_935_000, end: 84_939_999 }, + { code: "4126603", start: 84_940_000, end: 84_944_999 }, + { code: "4122909", start: 84_945_000, end: 84_949_999 }, + { code: "4128500", start: 84_950_000, end: 84_969_999 }, + { code: "4124004", start: 84_970_000, end: 84_979_999 }, + { code: "4125407", start: 84_980_000, end: 84_989_999 }, + { code: "4101606", start: 84_990_000, end: 84_999_999 }, + { code: "4109401", start: 85_000_001, end: 85_139_999 }, + { code: "4104428", start: 85_140_000, end: 85_144_999 }, + { code: "4108452", start: 85_145_000, end: 85_147_999 }, + { code: "4103958", start: 85_148_000, end: 85_149_999 }, + { code: "4127965", start: 85_150_000, end: 85_154_999 }, + { code: "4110201", start: 85_155_000, end: 85_159_999 }, + { code: "4104451", start: 85_160_000, end: 85_161_999 }, + { code: "4108650", start: 85_162_000, end: 85_167_999 }, + { code: "4115457", start: 85_168_000, end: 85_169_999 }, + { code: "4119301", start: 85_170_000, end: 85_194_999 }, + { code: "4121752", start: 85_195_000, end: 85_199_999 }, + { code: "4119608", start: 85_200_000, end: 85_224_999 }, + { code: "4103040", start: 85_225_000, end: 85_229_999 }, + { code: "4123857", start: 85_230_000, end: 85_239_999 }, + { code: "4115739", start: 85_240_000, end: 85_249_999 }, + { code: "4117271", start: 85_250_000, end: 85_259_999 }, + { code: "4114500", start: 85_260_000, end: 85_269_999 }, + { code: "4117800", start: 85_270_000, end: 85_274_999 }, + { code: "4113254", start: 85_275_000, end: 85_279_999 }, + { code: "4100459", start: 85_280_000, end: 85_299_999 }, + { code: "4113304", start: 85_300_001, end: 85_339_999 }, + { code: "4122156", start: 85_340_000, end: 85_344_999 }, + { code: "4120150", start: 85_345_000, end: 85_349_999 }, + { code: "4117057", start: 85_350_000, end: 85_389_999 }, + { code: "4128658", start: 85_390_000, end: 85_399_999 }, + { code: "4109302", start: 85_400_000, end: 85_407_999 }, + { code: "4107124", start: 85_408_000, end: 85_409_999 }, + { code: "4116703", start: 85_410_000, end: 85_414_999 }, + { code: "4103453", start: 85_415_000, end: 85_419_999 }, + { code: "4106308", start: 85_420_000, end: 85_422_999 }, + { code: "4110052", start: 85_423_000, end: 85_424_999 }, + { code: "4101051", start: 85_425_000, end: 85_429_999 }, + { code: "4103354", start: 85_430_000, end: 85_439_999 }, + { code: "4128005", start: 85_440_000, end: 85_449_999 }, + { code: "4104055", start: 85_450_000, end: 85_459_999 }, + { code: "4120903", start: 85_460_000, end: 85_464_999 }, + { code: "4107546", start: 85_465_000, end: 85_469_999 }, + { code: "4105003", start: 85_470_000, end: 85_477_999 }, + { code: "4109757", start: 85_478_000, end: 85_484_999 }, + { code: "4127858", start: 85_485_000, end: 85_499_999 }, + { code: "4118501", start: 85_500_001, end: 85_514_999 }, + { code: "4103222", start: 85_515_000, end: 85_519_999 }, + { code: "4128708", start: 85_520_000, end: 85_524_999 }, + { code: "4115309", start: 85_525_000, end: 85_529_999 }, + { code: "4105706", start: 85_530_000, end: 85_539_999 }, + { code: "4114401", start: 85_540_000, end: 85_547_999 }, + { code: "4109658", start: 85_548_000, end: 85_549_999 }, + { code: "4106506", start: 85_550_000, end: 85_554_999 }, + { code: "4117602", start: 85_555_000, end: 85_556_999 }, + { code: "4106456", start: 85_557_000, end: 85_559_999 }, + { code: "4105409", start: 85_560_000, end: 85_564_999 }, + { code: "4126652", start: 85_565_000, end: 85_567_999 }, + { code: "4126272", start: 85_568_000, end: 85_569_999 }, + { code: "4124806", start: 85_570_000, end: 85_574_999 }, + { code: "4125209", start: 85_575_000, end: 85_579_999 }, + { code: "4111209", start: 85_580_000, end: 85_584_999 }, + { code: "4128609", start: 85_585_000, end: 85_597_999 }, + { code: "4106571", start: 85_598_000, end: 85_599_999 }, + { code: "4108403", start: 85_600_001, end: 85_609_999 }, + { code: "4121604", start: 85_610_000, end: 85_614_999 }, + { code: "4115408", start: 85_615_000, end: 85_617_999 }, + { code: "4107850", start: 85_618_000, end: 85_619_999 }, + { code: "4122800", start: 85_620_000, end: 85_627_999 }, + { code: "4114351", start: 85_628_000, end: 85_629_999 }, + { code: "4107405", start: 85_630_000, end: 85_634_999 }, + { code: "4116950", start: 85_635_000, end: 85_639_999 }, + { code: "4101002", start: 85_640_000, end: 85_649_999 }, + { code: "4123808", start: 85_650_000, end: 85_659_999 }, + { code: "4107207", start: 85_660_000, end: 85_669_999 }, + { code: "4123006", start: 85_670_000, end: 85_679_999 }, + { code: "4103024", start: 85_680_000, end: 85_684_999 }, + { code: "4117255", start: 85_685_000, end: 85_699_999 }, + { code: "4102604", start: 85_700_000, end: 85_707_999 }, + { code: "4103156", start: 85_708_000, end: 85_709_999 }, + { code: "4124400", start: 85_710_000, end: 85_726_999 }, + { code: "4119251", start: 85_727_000, end: 85_729_999 }, + { code: "4120358", start: 85_730_000, end: 85_739_999 }, + { code: "4119004", start: 85_740_000, end: 85_744_999 }, + { code: "4102752", start: 85_745_000, end: 85_749_999 }, + { code: "4119806", start: 85_750_000, end: 85_759_999 }, + { code: "4104501", start: 85_760_000, end: 85_769_999 }, + { code: "4121406", start: 85_770_000, end: 85_779_999 }, + { code: "4103057", start: 85_780_000, end: 85_789_999 }, + { code: "4104600", start: 85_790_000, end: 85_794_999 }, + { code: "4123824", start: 85_795_000, end: 85_799_999 }, + { code: "4104808", start: 85_800_001, end: 85_824_999 }, + { code: "4124020", start: 85_825_000, end: 85_825_999 }, + { code: "4113452", start: 85_826_000, end: 85_829_999 }, + { code: "4108205", start: 85_830_000, end: 85_832_999 }, + { code: "4110656", start: 85_833_000, end: 85_834_999 }, + { code: "4112751", start: 85_835_000, end: 85_839_999 }, + { code: "4105300", start: 85_840_000, end: 85_844_999 }, + { code: "4128559", start: 85_845_000, end: 85_849_999 }, + { code: "4108304", start: 85_850_001, end: 85_874_999 }, + { code: "4124053", start: 85_875_000, end: 85_876_999 }, + { code: "4125704", start: 85_877_000, end: 85_879_999 }, + { code: "4110953", start: 85_880_000, end: 85_883_999 }, + { code: "4115804", start: 85_884_000, end: 85_884_999 }, + { code: "4126355", start: 85_885_000, end: 85_886_999 }, + { code: "4115606", start: 85_887_000, end: 85_887_999 }, + { code: "4121257", start: 85_888_000, end: 85_889_999 }, + { code: "4116059", start: 85_890_000, end: 85_891_999 }, + { code: "4123501", start: 85_892_000, end: 85_895_999 }, + { code: "4107157", start: 85_896_000, end: 85_897_999 }, + { code: "4125456", start: 85_898_000, end: 85_899_999 }, + { code: "4127700", start: 85_900_001, end: 85_928_999 }, + { code: "4125753", start: 85_929_000, end: 85_929_999 }, + { code: "4117222", start: 85_930_000, end: 85_932_999 }, + { code: "4117453", start: 85_933_000, end: 85_934_999 }, + { code: "4102000", start: 85_935_000, end: 85_939_999 }, + { code: "4120853", start: 85_940_000, end: 85_944_999 }, + { code: "4127957", start: 85_945_000, end: 85_947_999 }, + { code: "4118451", start: 85_948_000, end: 85_949_999 }, + { code: "4117909", start: 85_950_000, end: 85_954_999 }, + { code: "4115358", start: 85_955_000, end: 85_959_999 }, + { code: "4114609", start: 85_960_000, end: 85_979_999 }, + { code: "4108809", start: 85_980_000, end: 85_987_999 }, + { code: "4107538", start: 85_988_000, end: 85_989_999 }, + { code: "4127403", start: 85_990_000, end: 85_997_999 }, + { code: "4115853", start: 85_998_000, end: 85_999_999 }, + { code: "4113700", start: 86_000_001, end: 86_124_999 }, + { code: "4126678", start: 86_125_000, end: 86_129_999 }, + { code: "4102802", start: 86_130_000, end: 86_139_999 }, + { code: "4120507", start: 86_140_000, end: 86_149_999 }, + { code: "4100806", start: 86_150_000, end: 86_159_999 }, + { code: "4120002", start: 86_160_000, end: 86_164_999 }, + { code: "4108007", start: 86_165_000, end: 86_169_999 }, + { code: "4126504", start: 86_170_000, end: 86_179_999 }, + { code: "4103701", start: 86_180_001, end: 86_199_999 }, + { code: "4109807", start: 86_200_000, end: 86_209_999 }, + { code: "4112702", start: 86_210_000, end: 86_219_999 }, + { code: "4101903", start: 86_220_000, end: 86_224_999 }, + { code: "4123204", start: 86_225_000, end: 86_229_999 }, + { code: "4116604", start: 86_230_000, end: 86_239_999 }, + { code: "4126009", start: 86_240_000, end: 86_249_999 }, + { code: "4117214", start: 86_250_000, end: 86_269_999 }, + { code: "4124707", start: 86_270_000, end: 86_279_999 }, + { code: "4128401", start: 86_280_000, end: 86_289_999 }, + { code: "4121307", start: 86_290_000, end: 86_299_999 }, + { code: "4106407", start: 86_300_000, end: 86_309_999 }, + { code: "4117008", start: 86_310_000, end: 86_314_999 }, + { code: "4124301", start: 86_315_000, end: 86_319_999 }, + { code: "4106001", start: 86_320_000, end: 86_329_999 }, + { code: "4113403", start: 86_330_000, end: 86_339_999 }, + { code: "4126405", start: 86_340_000, end: 86_349_999 }, + { code: "4123907", start: 86_350_000, end: 86_359_999 }, + { code: "4102406", start: 86_360_000, end: 86_369_999 }, + { code: "4123105", start: 86_370_000, end: 86_374_999 }, + { code: "4111001", start: 86_375_000, end: 86_379_999 }, + { code: "4101101", start: 86_380_000, end: 86_384_999 }, + { code: "4102703", start: 86_385_000, end: 86_389_999 }, + { code: "4103602", start: 86_390_000, end: 86_399_999 }, + { code: "4111803", start: 86_400_000, end: 86_409_999 }, + { code: "4121802", start: 86_410_000, end: 86_419_999 }, + { code: "4104709", start: 86_420_000, end: 86_429_999 }, + { code: "4124103", start: 86_430_000, end: 86_449_999 }, + { code: "4120705", start: 86_450_000, end: 86_454_999 }, + { code: "4112801", start: 86_455_000, end: 86_459_999 }, + { code: "4100103", start: 86_460_000, end: 86_464_999 }, + { code: "4109005", start: 86_465_000, end: 86_469_999 }, + { code: "4112900", start: 86_470_000, end: 86_479_999 }, + { code: "4106100", start: 86_480_000, end: 86_489_999 }, + { code: "4121901", start: 86_490_000, end: 86_599_999 }, + { code: "4122404", start: 86_600_001, end: 86_609_999 }, + { code: "4111902", start: 86_610_000, end: 86_612_999 }, + { code: "4119657", start: 86_613_000, end: 86_614_999 }, + { code: "4116000", start: 86_615_000, end: 86_617_999 }, + { code: "4120333", start: 86_618_000, end: 86_619_999 }, + { code: "4109203", start: 86_620_000, end: 86_629_999 }, + { code: "4105102", start: 86_630_000, end: 86_634_999 }, + { code: "4113809", start: 86_635_000, end: 86_639_999 }, + { code: "4103404", start: 86_640_000, end: 86_649_999 }, + { code: "4124509", start: 86_650_000, end: 86_659_999 }, + { code: "4123600", start: 86_660_000, end: 86_669_999 }, + { code: "4110904", start: 86_670_000, end: 86_679_999 }, + { code: "4116406", start: 86_680_000, end: 86_689_999 }, + { code: "4105904", start: 86_690_000, end: 86_699_999 }, + { code: "4101507", start: 86_700_001, end: 86_719_999 }, + { code: "4122701", start: 86_720_000, end: 86_729_999 }, + { code: "4102109", start: 86_730_000, end: 86_749_999 }, + { code: "4110003", start: 86_750_000, end: 86_754_999 }, + { code: "4101150", start: 86_755_000, end: 86_759_999 }, + { code: "4116307", start: 86_760_000, end: 86_769_999 }, + { code: "4123402", start: 86_770_000, end: 86_779_999 }, + { code: "4108106", start: 86_780_000, end: 86_789_999 }, + { code: "4113601", start: 86_790_000, end: 86_799_999 }, + { code: "4101408", start: 86_800_001, end: 86_819_999 }, + { code: "4103503", start: 86_820_000, end: 86_824_999 }, + { code: "4114906", start: 86_825_000, end: 86_827_999 }, + { code: "4115754", start: 86_828_000, end: 86_829_999 }, + { code: "4122107", start: 86_830_000, end: 86_839_999 }, + { code: "4107603", start: 86_840_000, end: 86_844_999 }, + { code: "4108700", start: 86_845_000, end: 86_847_999 }, + { code: "4122172", start: 86_848_000, end: 86_849_999 }, + { code: "4122651", start: 86_850_000, end: 86_854_999 }, + { code: "4106852", start: 86_855_000, end: 86_859_999 }, + { code: "4112504", start: 86_860_000, end: 86_864_999 }, + { code: "4113429", start: 86_865_000, end: 86_869_999 }, + { code: "4111506", start: 86_870_000, end: 86_879_999 }, + { code: "4101853", start: 86_880_000, end: 86_883_999 }, + { code: "4101655", start: 86_884_000, end: 86_889_999 }, + { code: "4103800", start: 86_890_000, end: 86_894_999 }, + { code: "4117297", start: 86_895_000, end: 86_899_999 }, + { code: "4112108", start: 86_900_000, end: 86_909_999 }, + { code: "4115507", start: 86_910_000, end: 86_919_999 }, + { code: "4113106", start: 86_920_000, end: 86_924_999 }, + { code: "4103305", start: 86_925_000, end: 86_929_999 }, + { code: "4125001", start: 86_930_000, end: 86_934_999 }, + { code: "4113759", start: 86_935_000, end: 86_937_999 }, + { code: "4108551", start: 86_938_000, end: 86_939_999 }, + { code: "4103206", start: 86_940_000, end: 86_944_999 }, + { code: "4125803", start: 86_945_000, end: 86_949_999 }, + { code: "4107702", start: 86_950_000, end: 86_959_999 }, + { code: "4102505", start: 86_960_000, end: 86_969_999 }, + { code: "4106555", start: 86_970_000, end: 86_974_999 }, + { code: "4114203", start: 86_975_000, end: 86_989_999 }, + { code: "4114807", start: 86_990_000, end: 86_999_999 }, + { code: "4115200", start: 87_000_001, end: 87_109_999 }, + { code: "4126256", start: 87_110_001, end: 87_119_999 }, + { code: "4107900", start: 87_120_000, end: 87_129_999 }, + { code: "4111605", start: 87_130_000, end: 87_139_999 }, + { code: "4117503", start: 87_140_000, end: 87_154_999 }, + { code: "4107306", start: 87_155_000, end: 87_159_999 }, + { code: "4114104", start: 87_160_000, end: 87_169_999 }, + { code: "4117404", start: 87_170_000, end: 87_174_999 }, + { code: "4111100", start: 87_175_000, end: 87_179_999 }, + { code: "4120408", start: 87_180_000, end: 87_184_999 }, + { code: "4107801", start: 87_185_000, end: 87_189_999 }, + { code: "4125308", start: 87_190_000, end: 87_199_999 }, + { code: "4105508", start: 87_200_001, end: 87_214_999 }, + { code: "4125555", start: 87_215_000, end: 87_219_999 }, + { code: "4126108", start: 87_220_000, end: 87_224_999 }, + { code: "4112405", start: 87_225_000, end: 87_229_999 }, + { code: "4113007", start: 87_230_000, end: 87_234_999 }, + { code: "4110409", start: 87_235_000, end: 87_239_999 }, + { code: "4127205", start: 87_240_000, end: 87_249_999 }, + { code: "4118808", start: 87_250_000, end: 87_259_999 }, + { code: "4101705", start: 87_260_000, end: 87_264_999 }, + { code: "4121109", start: 87_265_000, end: 87_269_999 }, + { code: "4107504", start: 87_270_000, end: 87_279_999 }, + { code: "4110805", start: 87_280_000, end: 87_289_999 }, + { code: "4113734", start: 87_290_000, end: 87_299_999 }, + { code: "4104303", start: 87_300_001, end: 87_319_999 }, + { code: "4122503", start: 87_320_000, end: 87_324_999 }, + { code: "4107553", start: 87_325_000, end: 87_329_999 }, + { code: "4116802", start: 87_330_000, end: 87_339_999 }, + { code: "4114005", start: 87_340_000, end: 87_344_999 }, + { code: "4103909", start: 87_345_000, end: 87_354_999 }, + { code: "4112959", start: 87_355_000, end: 87_359_999 }, + { code: "4108601", start: 87_360_000, end: 87_364_999 }, + { code: "4120655", start: 87_365_000, end: 87_369_999 }, + { code: "4116109", start: 87_370_000, end: 87_379_999 }, + { code: "4112207", start: 87_380_000, end: 87_389_999 }, + { code: "4103008", start: 87_390_000, end: 87_394_999 }, + { code: "4121356", start: 87_395_000, end: 87_399_999 }, + { code: "4106605", start: 87_400_000, end: 87_429_999 }, + { code: "4126801", start: 87_430_000, end: 87_449_999 }, + { code: "4127908", start: 87_450_000, end: 87_469_999 }, + { code: "4115101", start: 87_470_000, end: 87_479_999 }, + { code: "4114708", start: 87_480_000, end: 87_484_999 }, + { code: "4107256", start: 87_485_000, end: 87_489_999 }, + { code: "4117206", start: 87_490_000, end: 87_499_999 }, + { code: "4128104", start: 87_500_001, end: 87_524_999 }, + { code: "4111555", start: 87_525_000, end: 87_527_999 }, + { code: "4128625", start: 87_528_000, end: 87_529_999 }, + { code: "4109906", start: 87_530_000, end: 87_534_999 }, + { code: "4128807", start: 87_535_000, end: 87_537_999 }, + { code: "4118857", start: 87_538_000, end: 87_539_999 }, + { code: "4118907", start: 87_540_000, end: 87_544_999 }, + { code: "4107520", start: 87_545_000, end: 87_549_999 }, + { code: "4100509", start: 87_550_000, end: 87_554_999 }, + { code: "4125357", start: 87_555_000, end: 87_559_999 }, + { code: "4110607", start: 87_560_000, end: 87_564_999 }, + { code: "4103479", start: 87_565_000, end: 87_569_999 }, + { code: "4108320", start: 87_570_000, end: 87_579_999 }, + { code: "4100707", start: 87_580_000, end: 87_594_999 }, + { code: "4103370", start: 87_595_000, end: 87_599_999 }, + { code: "4116901", start: 87_600_000, end: 87_629_999 }, + { code: "4102208", start: 87_630_000, end: 87_639_999 }, + { code: "4128302", start: 87_640_000, end: 87_649_999 }, + { code: "4106704", start: 87_650_000, end: 87_659_999 }, + { code: "4118105", start: 87_660_000, end: 87_669_999 }, + { code: "4110300", start: 87_670_000, end: 87_679_999 }, + { code: "4118303", start: 87_680_000, end: 87_689_999 }, + { code: "4112603", start: 87_690_000, end: 87_699_999 }, + { code: "4118402", start: 87_700_001, end: 87_729_999 }, + { code: "4124202", start: 87_730_000, end: 87_739_999 }, + { code: "4124905", start: 87_740_000, end: 87_749_999 }, + { code: "4100608", start: 87_750_000, end: 87_759_999 }, + { code: "4126702", start: 87_760_000, end: 87_769_999 }, + { code: "4124608", start: 87_770_000, end: 87_779_999 }, + { code: "4118006", start: 87_780_000, end: 87_789_999 }, + { code: "4116505", start: 87_790_000, end: 87_799_999 }, + { code: "4122602", start: 87_800_000, end: 87_809_999 }, + { code: "4109104", start: 87_810_000, end: 87_819_999 }, + { code: "4105607", start: 87_820_000, end: 87_829_999 }, + { code: "4126900", start: 87_830_000, end: 87_839_999 }, + { code: "4115903", start: 87_840_000, end: 87_849_999 }, + { code: "4100905", start: 87_850_000, end: 87_859_999 }, + { code: "4119707", start: 87_860_000, end: 87_879_999 }, + { code: "4108908", start: 87_880_000, end: 87_889_999 }, + { code: "4127304", start: 87_890_000, end: 87_899_999 }, + { code: "4113502", start: 87_900_000, end: 87_909_999 }, + { code: "4123709", start: 87_910_000, end: 87_914_999 }, + { code: "4123956", start: 87_915_000, end: 87_919_999 }, + { code: "4123303", start: 87_920_000, end: 87_929_999 }, + { code: "4121000", start: 87_930_000, end: 87_949_999 }, + { code: "4120200", start: 87_950_000, end: 87_954_999 }, + { code: "4125902", start: 87_955_000, end: 87_959_999 }, + { code: "4115002", start: 87_960_000, end: 87_969_999 }, + { code: "4117107", start: 87_970_000, end: 87_979_999 }, + { code: "4111308", start: 87_980_000, end: 87_989_999 }, + { code: "4107108", start: 87_990_000, end: 87_999_999 }, + { code: "4205407", start: 88_000_001, end: 88_099_999 }, + { code: "4216602", start: 88_100_001, end: 88_124_999 }, + { code: "4217253", start: 88_125_000, end: 88_129_999 }, + { code: "4211900", start: 88_130_001, end: 88_139_999 }, + { code: "4215703", start: 88_140_000, end: 88_149_999 }, + { code: "4200606", start: 88_150_000, end: 88_159_999 }, + { code: "4202305", start: 88_160_001, end: 88_179_999 }, + { code: "4201208", start: 88_180_000, end: 88_189_999 }, + { code: "4206009", start: 88_190_000, end: 88_199_999 }, + { code: "4218004", start: 88_200_000, end: 88_209_999 }, + { code: "4213500", start: 88_210_000, end: 88_214_999 }, + { code: "4202453", start: 88_215_000, end: 88_219_999 }, + { code: "4208302", start: 88_220_000, end: 88_229_999 }, + { code: "4203709", start: 88_230_000, end: 88_239_999 }, + { code: "4216305", start: 88_240_000, end: 88_259_999 }, + { code: "4210209", start: 88_260_000, end: 88_269_999 }, + { code: "4211504", start: 88_270_000, end: 88_294_999 }, + { code: "4202701", start: 88_295_000, end: 88_299_999 }, + { code: "4208203", start: 88_300_001, end: 88_319_999 }, + { code: "4207106", start: 88_320_000, end: 88_329_999 }, + { code: "4202008", start: 88_330_001, end: 88_339_999 }, + { code: "4203204", start: 88_340_001, end: 88_349_999 }, + { code: "4202909", start: 88_350_001, end: 88_359_999 }, + { code: "4206306", start: 88_360_000, end: 88_369_999 }, + { code: "4211306", start: 88_370_001, end: 88_379_999 }, + { code: "4212809", start: 88_380_000, end: 88_384_999 }, + { code: "4212502", start: 88_385_000, end: 88_389_999 }, + { code: "4202107", start: 88_390_000, end: 88_394_999 }, + { code: "4216354", start: 88_395_000, end: 88_399_999 }, + { code: "4208500", start: 88_400_000, end: 88_406_999 }, + { code: "4204194", start: 88_407_000, end: 88_409_999 }, + { code: "4201802", start: 88_410_000, end: 88_419_999 }, + { code: "4200200", start: 88_420_000, end: 88_429_999 }, + { code: "4212700", start: 88_430_000, end: 88_439_999 }, + { code: "4207403", start: 88_440_000, end: 88_442_999 }, + { code: "4219200", start: 88_443_000, end: 88_444_999 }, + { code: "4209805", start: 88_445_000, end: 88_449_999 }, + { code: "4200705", start: 88_450_000, end: 88_459_999 }, + { code: "4200903", start: 88_460_000, end: 88_469_999 }, + { code: "4214300", start: 88_470_000, end: 88_474_999 }, + { code: "4201109", start: 88_475_000, end: 88_484_999 }, + { code: "4215901", start: 88_485_000, end: 88_489_999 }, + { code: "4212304", start: 88_490_000, end: 88_494_999 }, + { code: "4205704", start: 88_495_000, end: 88_499_999 }, + { code: "4209300", start: 88_500_001, end: 88_534_999 }, + { code: "4204558", start: 88_535_000, end: 88_537_999 }, + { code: "4202438", start: 88_538_000, end: 88_539_999 }, + { code: "4211751", start: 88_540_000, end: 88_542_999 }, + { code: "4211892", start: 88_543_000, end: 88_544_999 }, + { code: "4212056", start: 88_545_000, end: 88_547_999 }, + { code: "4203253", start: 88_548_000, end: 88_549_999 }, + { code: "4213302", start: 88_550_000, end: 88_569_999 }, + { code: "4216800", start: 88_570_000, end: 88_579_999 }, + { code: "4203402", start: 88_580_000, end: 88_584_999 }, + { code: "4204178", start: 88_585_000, end: 88_589_999 }, + { code: "4201000", start: 88_590_000, end: 88_597_999 }, + { code: "4204152", start: 88_598_000, end: 88_599_999 }, + { code: "4216503", start: 88_600_000, end: 88_624_999 }, + { code: "4218954", start: 88_625_000, end: 88_639_999 }, + { code: "4202503", start: 88_640_000, end: 88_649_999 }, + { code: "4218905", start: 88_650_000, end: 88_657_999 }, + { code: "4215059", start: 88_658_000, end: 88_679_999 }, + { code: "4202602", start: 88_680_000, end: 88_699_999 }, + { code: "4218707", start: 88_700_001, end: 88_709_999 }, + { code: "4218400", start: 88_710_000, end: 88_714_999 }, + { code: "4208807", start: 88_715_000, end: 88_716_999 }, + { code: "4215455", start: 88_717_000, end: 88_719_999 }, + { code: "4212403", start: 88_720_000, end: 88_729_999 }, + { code: "4217006", start: 88_730_000, end: 88_734_999 }, + { code: "4206207", start: 88_735_000, end: 88_739_999 }, + { code: "4201505", start: 88_740_000, end: 88_744_999 }, + { code: "4203956", start: 88_745_000, end: 88_749_999 }, + { code: "4202800", start: 88_750_000, end: 88_759_999 }, + { code: "4214904", start: 88_760_000, end: 88_762_999 }, + { code: "4215604", start: 88_763_000, end: 88_764_999 }, + { code: "4217105", start: 88_765_000, end: 88_769_999 }, + { code: "4207205", start: 88_770_000, end: 88_779_999 }, + { code: "4207304", start: 88_780_000, end: 88_789_999 }, + { code: "4209409", start: 88_790_000, end: 88_797_999 }, + { code: "4212650", start: 88_798_000, end: 88_799_999 }, + { code: "4204608", start: 88_800_001, end: 88_819_999 }, + { code: "4207007", start: 88_820_000, end: 88_827_999 }, + { code: "4220000", start: 88_828_000, end: 88_829_999 }, + { code: "4211207", start: 88_830_000, end: 88_839_999 }, + { code: "4219002", start: 88_840_000, end: 88_844_999 }, + { code: "4204251", start: 88_845_000, end: 88_849_999 }, + { code: "4205456", start: 88_850_000, end: 88_859_999 }, + { code: "4217600", start: 88_860_000, end: 88_861_999 }, + { code: "4218350", start: 88_862_000, end: 88_864_999 }, + { code: "4211603", start: 88_865_000, end: 88_869_999 }, + { code: "4211702", start: 88_870_000, end: 88_879_999 }, + { code: "4209607", start: 88_880_000, end: 88_889_999 }, + { code: "4206108", start: 88_890_000, end: 88_899_999 }, + { code: "4201406", start: 88_900_001, end: 88_913_999 }, + { code: "4201950", start: 88_914_000, end: 88_914_999 }, + { code: "4210407", start: 88_915_000, end: 88_919_999 }, + { code: "4210803", start: 88_920_000, end: 88_924_999 }, + { code: "4211256", start: 88_925_000, end: 88_929_999 }, + { code: "4218806", start: 88_930_000, end: 88_934_999 }, + { code: "4205191", start: 88_935_000, end: 88_939_999 }, + { code: "4218103", start: 88_940_000, end: 88_949_999 }, + { code: "4208708", start: 88_950_000, end: 88_954_999 }, + { code: "4202073", start: 88_955_000, end: 88_959_999 }, + { code: "4217709", start: 88_960_000, end: 88_964_999 }, + { code: "4215653", start: 88_965_000, end: 88_969_999 }, + { code: "4216404", start: 88_970_000, end: 88_979_999 }, + { code: "4212254", start: 88_980_000, end: 88_989_999 }, + { code: "4213807", start: 88_990_000, end: 88_999_999 }, + { code: "4202404", start: 89_000_001, end: 89_099_999 }, + { code: "4213203", start: 89_107_000, end: 89_107_999 }, + { code: "4210605", start: 89_108_000, end: 89_109_999 }, + { code: "4205902", start: 89_110_001, end: 89_119_999 }, + { code: "4218202", start: 89_120_000, end: 89_120_999 }, + { code: "4214706", start: 89_121_000, end: 89_123_999 }, + { code: "4202206", start: 89_124_000, end: 89_125_999 }, + { code: "4205159", start: 89_126_000, end: 89_127_999 }, + { code: "4210001", start: 89_128_000, end: 89_129_999 }, + { code: "4207502", start: 89_130_000, end: 89_134_999 }, + { code: "4201257", start: 89_135_000, end: 89_135_999 }, + { code: "4215109", start: 89_136_000, end: 89_137_999 }, + { code: "4201703", start: 89_138_000, end: 89_139_999 }, + { code: "4206900", start: 89_140_000, end: 89_144_999 }, + { code: "4209151", start: 89_145_000, end: 89_147_999 }, + { code: "4219358", start: 89_148_000, end: 89_149_999 }, + { code: "4214003", start: 89_150_000, end: 89_154_999 }, + { code: "4205100", start: 89_155_000, end: 89_156_999 }, + { code: "4219408", start: 89_157_000, end: 89_159_999 }, + { code: "4214805", start: 89_160_001, end: 89_169_999 }, + { code: "4209508", start: 89_170_000, end: 89_171_999 }, + { code: "4213708", start: 89_172_000, end: 89_175_999 }, + { code: "4218608", start: 89_176_000, end: 89_177_999 }, + { code: "4202859", start: 89_178_000, end: 89_179_999 }, + { code: "4214607", start: 89_180_000, end: 89_181_999 }, + { code: "4209904", start: 89_182_000, end: 89_183_999 }, + { code: "4214102", start: 89_184_000, end: 89_185_999 }, + { code: "4201901", start: 89_186_000, end: 89_187_999 }, + { code: "4200309", start: 89_188_000, end: 89_189_999 }, + { code: "4217808", start: 89_190_000, end: 89_193_999 }, + { code: "4210852", start: 89_194_000, end: 89_195_999 }, + { code: "4215307", start: 89_196_000, end: 89_197_999 }, + { code: "4214508", start: 89_198_000, end: 89_198_999 }, + { code: "4215679", start: 89_199_000, end: 89_199_999 }, + { code: "4209102", start: 89_200_001, end: 89_239_999 }, + { code: "4216206", start: 89_240_000, end: 89_244_999 }, + { code: "4201307", start: 89_245_000, end: 89_246_999 }, + { code: "4202057", start: 89_247_000, end: 89_247_999 }, + { code: "4205803", start: 89_248_000, end: 89_248_999 }, + { code: "4208450", start: 89_249_000, end: 89_249_999 }, + { code: "4208906", start: 89_250_001, end: 89_269_999 }, + { code: "4206504", start: 89_270_000, end: 89_274_999 }, + { code: "4217402", start: 89_275_000, end: 89_277_999 }, + { code: "4204509", start: 89_278_000, end: 89_279_999 }, + { code: "4215802", start: 89_280_001, end: 89_293_999 }, + { code: "4203303", start: 89_294_000, end: 89_294_999 }, + { code: "4215000", start: 89_295_000, end: 89_299_999 }, + { code: "4210100", start: 89_300_000, end: 89_339_999 }, + { code: "4208104", start: 89_340_000, end: 89_369_999 }, + { code: "4212205", start: 89_370_000, end: 89_379_999 }, + { code: "4211108", start: 89_380_000, end: 89_399_999 }, + { code: "4213609", start: 89_400_000, end: 89_419_999 }, + { code: "4210704", start: 89_420_000, end: 89_429_999 }, + { code: "4203154", start: 89_430_000, end: 89_439_999 }, + { code: "4207908", start: 89_440_000, end: 89_459_999 }, + { code: "4203808", start: 89_460_000, end: 89_477_999 }, + { code: "4202131", start: 89_478_000, end: 89_479_999 }, + { code: "4210308", start: 89_480_000, end: 89_489_999 }, + { code: "4218301", start: 89_490_000, end: 89_499_999 }, + { code: "4203006", start: 89_500_001, end: 89_514_999 }, + { code: "4209706", start: 89_515_000, end: 89_517_999 }, + { code: "4210050", start: 89_518_000, end: 89_519_999 }, + { code: "4204806", start: 89_520_000, end: 89_529_999 }, + { code: "4205555", start: 89_530_000, end: 89_532_999 }, + { code: "4216057", start: 89_533_000, end: 89_534_999 }, + { code: "4213351", start: 89_535_000, end: 89_539_999 }, + { code: "4215505", start: 89_540_000, end: 89_544_999 }, + { code: "4218251", start: 89_545_000, end: 89_549_999 }, + { code: "4214409", start: 89_550_000, end: 89_557_999 }, + { code: "4207577", start: 89_558_000, end: 89_559_999 }, + { code: "4219309", start: 89_560_000, end: 89_569_999 }, + { code: "4213005", start: 89_570_000, end: 89_579_999 }, + { code: "4205506", start: 89_580_000, end: 89_589_999 }, + { code: "4201604", start: 89_590_000, end: 89_594_999 }, + { code: "4215406", start: 89_595_000, end: 89_599_999 }, + { code: "4209003", start: 89_600_000, end: 89_608_999 }, + { code: "4210035", start: 89_609_000, end: 89_609_999 }, + { code: "4206702", start: 89_610_000, end: 89_612_999 }, + { code: "4205209", start: 89_613_000, end: 89_617_999 }, + { code: "4211058", start: 89_618_000, end: 89_619_999 }, + { code: "4203600", start: 89_620_000, end: 89_632_999 }, + { code: "4219853", start: 89_633_000, end: 89_633_999 }, + { code: "4202875", start: 89_634_000, end: 89_635_999 }, + { code: "4200051", start: 89_636_000, end: 89_637_999 }, + { code: "4219150", start: 89_638_000, end: 89_639_999 }, + { code: "4206801", start: 89_640_000, end: 89_641_999 }, + { code: "4217907", start: 89_642_000, end: 89_649_999 }, + { code: "4218509", start: 89_650_000, end: 89_651_999 }, + { code: "4206751", start: 89_652_000, end: 89_653_999 }, + { code: "4200408", start: 89_654_000, end: 89_659_999 }, + { code: "4209201", start: 89_660_000, end: 89_662_999 }, + { code: "4211801", start: 89_663_000, end: 89_664_999 }, + { code: "4203907", start: 89_665_000, end: 89_666_999 }, + { code: "4213104", start: 89_667_000, end: 89_668_999 }, + { code: "4207601", start: 89_669_000, end: 89_669_999 }, + { code: "4204004", start: 89_670_000, end: 89_674_999 }, + { code: "4219176", start: 89_675_000, end: 89_676_999 }, + { code: "4208609", start: 89_677_000, end: 89_679_999 }, + { code: "4207809", start: 89_680_000, end: 89_682_999 }, + { code: "4213401", start: 89_683_000, end: 89_686_999 }, + { code: "4212270", start: 89_687_000, end: 89_689_999 }, + { code: "4219101", start: 89_690_000, end: 89_693_999 }, + { code: "4205308", start: 89_694_000, end: 89_699_999 }, + { code: "4204301", start: 89_700_001, end: 89_729_999 }, + { code: "4200754", start: 89_730_000, end: 89_734_999 }, + { code: "4209854", start: 89_735_000, end: 89_739_999 }, + { code: "4201273", start: 89_740_000, end: 89_744_999 }, + { code: "4213906", start: 89_745_000, end: 89_749_999 }, + { code: "4212601", start: 89_750_000, end: 89_759_999 }, + { code: "4208005", start: 89_760_000, end: 89_764_999 }, + { code: "4211876", start: 89_765_000, end: 89_769_999 }, + { code: "4217501", start: 89_770_000, end: 89_777_999 }, + { code: "4201653", start: 89_778_000, end: 89_779_999 }, + { code: "4219606", start: 89_780_000, end: 89_789_999 }, + { code: "4207700", start: 89_790_000, end: 89_799_999 }, + { code: "4204202", start: 89_800_001, end: 89_816_999 }, + { code: "4206652", start: 89_817_000, end: 89_817_999 }, + { code: "4211454", start: 89_818_000, end: 89_818_999 }, + { code: "4204350", start: 89_819_000, end: 89_819_999 }, + { code: "4219507", start: 89_820_000, end: 89_823_999 }, + { code: "4202537", start: 89_824_000, end: 89_824_999 }, + { code: "4219705", start: 89_825_000, end: 89_827_999 }, + { code: "4209458", start: 89_828_000, end: 89_829_999 }, + { code: "4200101", start: 89_830_000, end: 89_831_999 }, + { code: "4207684", start: 89_832_000, end: 89_833_999 }, + { code: "4211850", start: 89_834_000, end: 89_834_999 }, + { code: "4216107", start: 89_835_000, end: 89_836_999 }, + { code: "4204459", start: 89_837_000, end: 89_837_999 }, + { code: "4205605", start: 89_838_000, end: 89_838_999 }, + { code: "4209177", start: 89_839_000, end: 89_839_999 }, + { code: "4204400", start: 89_840_000, end: 89_842_999 }, + { code: "4200556", start: 89_843_000, end: 89_844_999 }, + { code: "4218855", start: 89_845_000, end: 89_847_999 }, + { code: "4208955", start: 89_848_000, end: 89_849_999 }, + { code: "4214201", start: 89_850_000, end: 89_853_999 }, + { code: "4215695", start: 89_854_000, end: 89_854_999 }, + { code: "4217758", start: 89_855_000, end: 89_855_999 }, + { code: "4207858", start: 89_856_000, end: 89_858_999 }, + { code: "4205431", start: 89_859_000, end: 89_859_999 }, + { code: "4210555", start: 89_860_000, end: 89_861_999 }, + { code: "4205175", start: 89_862_000, end: 89_864_999 }, + { code: "4211405", start: 89_865_000, end: 89_867_999 }, + { code: "4217303", start: 89_868_000, end: 89_869_999 }, + { code: "4212908", start: 89_870_000, end: 89_870_999 }, + { code: "4217550", start: 89_871_000, end: 89_871_999 }, + { code: "4210902", start: 89_872_000, end: 89_872_999 }, + { code: "4202578", start: 89_873_000, end: 89_873_999 }, + { code: "4210506", start: 89_874_000, end: 89_874_999 }, + { code: "4217956", start: 89_875_000, end: 89_877_999 }, + { code: "4205357", start: 89_878_000, end: 89_878_999 }, + { code: "4217154", start: 89_879_000, end: 89_879_999 }, + { code: "4204103", start: 89_880_000, end: 89_881_999 }, + { code: "4213153", start: 89_882_000, end: 89_882_999 }, + { code: "4200507", start: 89_883_000, end: 89_884_999 }, + { code: "4216008", start: 89_885_000, end: 89_885_999 }, + { code: "4204756", start: 89_886_000, end: 89_886_999 }, + { code: "4212106", start: 89_887_000, end: 89_887_999 }, + { code: "4203105", start: 89_888_000, end: 89_889_999 }, + { code: "4204707", start: 89_890_000, end: 89_890_999 }, + { code: "4207759", start: 89_891_000, end: 89_892_999 }, + { code: "4211009", start: 89_893_000, end: 89_894_999 }, + { code: "4215075", start: 89_895_000, end: 89_895_999 }, + { code: "4208401", start: 89_896_000, end: 89_896_999 }, + { code: "4216255", start: 89_897_000, end: 89_897_999 }, + { code: "4218756", start: 89_898_000, end: 89_898_999 }, + { code: "4207650", start: 89_899_000, end: 89_899_999 }, + { code: "4217204", start: 89_900_000, end: 89_904_999 }, + { code: "4202081", start: 89_905_000, end: 89_905_999 }, + { code: "4212239", start: 89_906_000, end: 89_907_999 }, + { code: "4215208", start: 89_908_000, end: 89_908_999 }, + { code: "4202099", start: 89_909_000, end: 89_909_999 }, + { code: "4204905", start: 89_910_000, end: 89_914_999 }, + { code: "4215554", start: 89_915_000, end: 89_919_999 }, + { code: "4206405", start: 89_920_000, end: 89_924_999 }, + { code: "4202156", start: 89_925_000, end: 89_929_999 }, + { code: "4216701", start: 89_930_000, end: 89_934_999 }, + { code: "4214151", start: 89_935_000, end: 89_939_999 }, + { code: "4206603", start: 89_940_000, end: 89_949_999 }, + { code: "4205001", start: 89_950_000, end: 89_969_999 }, + { code: "4200804", start: 89_970_000, end: 89_979_999 }, + { code: "4203501", start: 89_980_000, end: 89_980_999 }, + { code: "4215356", start: 89_981_000, end: 89_981_999 }, + { code: "4215752", start: 89_982_000, end: 89_982_999 }, + { code: "4215687", start: 89_983_000, end: 89_984_999 }, + { code: "4212007", start: 89_985_000, end: 89_989_999 }, + { code: "4216909", start: 89_990_000, end: 89_997_999 }, + { code: "4211652", start: 89_998_000, end: 89_999_999 }, + { code: "4314902", start: 90_000_001, end: 91_999_999 }, + { code: "4304606", start: 92_000_001, end: 92_479_999 }, + { code: "4313375", start: 92_480_000, end: 92_499_999 }, + { code: "4309308", start: 92_500_000, end: 92_849_999 }, + { code: "4320552", start: 92_850_000, end: 92_899_999 }, + { code: "4311981", start: 92_900_000, end: 92_989_999 }, + { code: "4306767", start: 92_990_000, end: 92_999_999 }, + { code: "4318705", start: 93_000_001, end: 93_179_999 }, + { code: "4314803", start: 93_180_000, end: 93_199_999 }, + { code: "4320008", start: 93_200_001, end: 93_249_999 }, + { code: "4307708", start: 93_250_001, end: 93_299_999 }, + { code: "4313409", start: 93_300_001, end: 93_599_999 }, + { code: "4307609", start: 93_600_001, end: 93_699_999 }, + { code: "4303905", start: 93_700_000, end: 93_799_999 }, + { code: "4319901", start: 93_800_001, end: 93_879_999 }, + { code: "4300877", start: 93_880_000, end: 93_889_999 }, + { code: "4313060", start: 93_890_000, end: 93_899_999 }, + { code: "4310801", start: 93_900_000, end: 93_939_999 }, + { code: "4311627", start: 93_940_000, end: 93_944_999 }, + { code: "4315149", start: 93_945_000, end: 93_949_999 }, + { code: "4306403", start: 93_950_000, end: 93_989_999 }, + { code: "4312476", start: 93_990_000, end: 93_994_999 }, + { code: "4316956", start: 93_995_000, end: 93_999_999 }, + { code: "4309209", start: 94_000_001, end: 94_379_999 }, + { code: "4309050", start: 94_380_000, end: 94_399_999 }, + { code: "4323002", start: 94_400_001, end: 94_799_999 }, + { code: "4300604", start: 94_800_001, end: 94_899_999 }, + { code: "4303103", start: 94_900_001, end: 94_999_999 }, + { code: "4305108", start: 95_000_001, end: 95_149_999 }, + { code: "4313201", start: 95_150_000, end: 95_174_999 }, + { code: "4314423", start: 95_175_000, end: 95_179_999 }, + { code: "4307906", start: 95_180_000, end: 95_184_999 }, + { code: "4304804", start: 95_185_000, end: 95_189_999 }, + { code: "4319000", start: 95_190_000, end: 95_199_999 }, + { code: "4322509", start: 95_200_000, end: 95_229_999 }, + { code: "4312617", start: 95_230_000, end: 95_235_999 }, + { code: "4312377", start: 95_236_000, end: 95_239_999 }, + { code: "4310439", start: 95_240_000, end: 95_249_999 }, + { code: "4300802", start: 95_250_000, end: 95_254_999 }, + { code: "4303673", start: 95_255_000, end: 95_259_999 }, + { code: "4313359", start: 95_260_000, end: 95_269_999 }, + { code: "4308201", start: 95_270_000, end: 95_274_999 }, + { code: "4313086", start: 95_275_000, end: 95_279_999 }, + { code: "4318622", start: 95_280_000, end: 95_289_999 }, + { code: "4302303", start: 95_290_000, end: 95_299_999 }, + { code: "4311304", start: 95_300_000, end: 95_304_999 }, + { code: "4309902", start: 95_305_000, end: 95_307_999 }, + { code: "4304622", start: 95_308_000, end: 95_309_999 }, + { code: "4300661", start: 95_310_000, end: 95_314_999 }, + { code: "4304952", start: 95_315_000, end: 95_319_999 }, + { code: "4313300", start: 95_320_000, end: 95_324_999 }, + { code: "4323606", start: 95_325_000, end: 95_329_999 }, + { code: "4322806", start: 95_330_000, end: 95_332_999 }, + { code: "4307864", start: 95_333_000, end: 95_333_999 }, + { code: "4323309", start: 95_334_000, end: 95_334_999 }, + { code: "4305959", start: 95_335_000, end: 95_339_999 }, + { code: "4312906", start: 95_340_000, end: 95_344_999 }, + { code: "4315172", start: 95_345_000, end: 95_349_999 }, + { code: "4312807", start: 95_350_000, end: 95_354_999 }, + { code: "4309258", start: 95_355_000, end: 95_359_999 }, + { code: "4314001", start: 95_360_000, end: 95_364_999 }, + { code: "4318440", start: 95_365_000, end: 95_369_999 }, + { code: "4301800", start: 95_370_000, end: 95_379_999 }, + { code: "4307401", start: 95_380_000, end: 95_389_999 }, + { code: "4314464", start: 95_390_000, end: 95_399_999 }, + { code: "4318200", start: 95_400_000, end: 95_419_999 }, + { code: "4311122", start: 95_420_000, end: 95_479_999 }, + { code: "4303608", start: 95_480_000, end: 95_499_999 }, + { code: "4317608", start: 95_500_000, end: 95_514_999 }, + { code: "4304713", start: 95_515_000, end: 95_519_999 }, + { code: "4313508", start: 95_520_000, end: 95_529_999 }, + { code: "4311775", start: 95_530_000, end: 95_534_999 }, + { code: "4321436", start: 95_535_000, end: 95_537_999 }, + { code: "4310652", start: 95_538_000, end: 95_539_999 }, + { code: "4313656", start: 95_540_000, end: 95_551_999 }, + { code: "4304671", start: 95_552_000, end: 95_554_999 }, + { code: "4304630", start: 95_555_000, end: 95_559_999 }, + { code: "4321501", start: 95_560_000, end: 95_567_999 }, + { code: "4306551", start: 95_568_000, end: 95_571_999 }, + { code: "4311734", start: 95_572_000, end: 95_574_999 }, + { code: "4321832", start: 95_575_000, end: 95_576_999 }, + { code: "4312443", start: 95_577_000, end: 95_579_999 }, + { code: "4321667", start: 95_580_000, end: 95_584_999 }, + { code: "4301057", start: 95_585_000, end: 95_587_999 }, + { code: "4323804", start: 95_588_000, end: 95_589_999 }, + { code: "4321600", start: 95_590_000, end: 95_594_999 }, + { code: "4305454", start: 95_595_000, end: 95_598_999 }, + { code: "4301636", start: 95_599_000, end: 95_599_999 }, + { code: "4321204", start: 95_600_001, end: 95_624_999 }, + { code: "4310330", start: 95_625_000, end: 95_629_999 }, + { code: "4314050", start: 95_630_000, end: 95_649_999 }, + { code: "4310108", start: 95_650_000, end: 95_659_999 }, + { code: "4321709", start: 95_660_000, end: 95_669_999 }, + { code: "4309100", start: 95_670_000, end: 95_679_999 }, + { code: "4304408", start: 95_680_000, end: 95_689_999 }, + { code: "4316006", start: 95_690_000, end: 95_694_999 }, + { code: "4315750", start: 95_695_000, end: 95_699_999 }, + { code: "4302105", start: 95_700_001, end: 95_714_999 }, + { code: "4317251", start: 95_715_000, end: 95_716_999 }, + { code: "4314548", start: 95_717_000, end: 95_717_999 }, + { code: "4312385", start: 95_718_000, end: 95_719_999 }, + { code: "4308607", start: 95_720_000, end: 95_725_999 }, + { code: "4305934", start: 95_726_000, end: 95_726_999 }, + { code: "4302253", start: 95_727_000, end: 95_729_999 }, + { code: "4301651", start: 95_730_000, end: 95_734_999 }, + { code: "4315800", start: 95_735_000, end: 95_739_999 }, + { code: "4314753", start: 95_740_000, end: 95_744_999 }, + { code: "4304689", start: 95_745_000, end: 95_747_999 }, + { code: "4318614", start: 95_748_000, end: 95_749_999 }, + { code: "4316501", start: 95_750_000, end: 95_754_999 }, + { code: "4318481", start: 95_755_000, end: 95_757_999 }, + { code: "4319356", start: 95_758_000, end: 95_759_999 }, + { code: "4319505", start: 95_760_000, end: 95_764_999 }, + { code: "4302352", start: 95_765_000, end: 95_767_999 }, + { code: "4311643", start: 95_768_000, end: 95_769_999 }, + { code: "4308102", start: 95_770_000, end: 95_772_999 }, + { code: "4300570", start: 95_773_000, end: 95_774_999 }, + { code: "4322251", start: 95_775_000, end: 95_777_999 }, + { code: "4322541", start: 95_778_000, end: 95_779_999 }, + { code: "4312401", start: 95_780_000, end: 95_782_999 }, + { code: "4314035", start: 95_783_000, end: 95_784_999 }, + { code: "4309555", start: 95_785_000, end: 95_789_999 }, + { code: "4302659", start: 95_790_000, end: 95_792_999 }, + { code: "4311791", start: 95_793_000, end: 95_794_999 }, + { code: "4319752", start: 95_795_000, end: 95_799_999 }, + { code: "4322608", start: 95_800_000, end: 95_819_999 }, + { code: "4308805", start: 95_820_000, end: 95_832_999 }, + { code: "4322525", start: 95_833_000, end: 95_834_999 }, + { code: "4312153", start: 95_835_000, end: 95_839_999 }, + { code: "4322004", start: 95_840_000, end: 95_859_999 }, + { code: "4321303", start: 95_860_000, end: 95_862_999 }, + { code: "4320859", start: 95_863_000, end: 95_864_999 }, + { code: "4314159", start: 95_865_000, end: 95_869_999 }, + { code: "4302402", start: 95_870_000, end: 95_874_999 }, + { code: "4308078", start: 95_875_000, end: 95_879_999 }, + { code: "4307807", start: 95_880_000, end: 95_884_999 }, + { code: "4310363", start: 95_885_000, end: 95_889_999 }, + { code: "4321451", start: 95_890_000, end: 95_892_999 }, + { code: "4323770", start: 95_893_000, end: 95_894_999 }, + { code: "4305587", start: 95_895_000, end: 95_899_999 }, + { code: "4311403", start: 95_900_001, end: 95_914_999 }, + { code: "4316758", start: 95_915_000, end: 95_917_999 }, + { code: "4320453", start: 95_918_000, end: 95_919_999 }, + { code: "4302451", start: 95_920_000, end: 95_922_999 }, + { code: "4312054", start: 95_923_000, end: 95_924_999 }, + { code: "4315156", start: 95_925_000, end: 95_929_999 }, + { code: "4306205", start: 95_930_000, end: 95_932_999 }, + { code: "4304614", start: 95_933_000, end: 95_934_999 }, + { code: "4304697", start: 95_935_000, end: 95_936_999 }, + { code: "4308433", start: 95_937_000, end: 95_939_999 }, + { code: "4301008", start: 95_940_000, end: 95_944_999 }, + { code: "4315131", start: 95_945_000, end: 95_947_999 }, + { code: "4321626", start: 95_948_000, end: 95_949_999 }, + { code: "4313003", start: 95_950_000, end: 95_954_999 }, + { code: "4305835", start: 95_955_000, end: 95_959_999 }, + { code: "4306809", start: 95_960_000, end: 95_964_999 }, + { code: "4315453", start: 95_965_000, end: 95_966_999 }, + { code: "4306759", start: 95_967_000, end: 95_969_999 }, + { code: "4312609", start: 95_970_000, end: 95_971_999 }, + { code: "4322855", start: 95_972_000, end: 95_974_999 }, + { code: "4315206", start: 95_975_000, end: 95_979_999 }, + { code: "4300703", start: 95_980_000, end: 95_984_999 }, + { code: "4312757", start: 95_985_000, end: 95_989_999 }, + { code: "4310306", start: 95_990_000, end: 95_994_999 }, + { code: "4301404", start: 95_995_000, end: 95_996_999 }, + { code: "4310579", start: 95_997_000, end: 95_999_999 }, + { code: "4314407", start: 96_000_001, end: 96_147_999 }, + { code: "4322327", start: 96_148_000, end: 96_149_999 }, + { code: "4312450", start: 96_150_000, end: 96_154_999 }, + { code: "4301073", start: 96_155_000, end: 96_159_999 }, + { code: "4304663", start: 96_160_000, end: 96_169_999 }, + { code: "4318804", start: 96_170_000, end: 96_177_999 }, + { code: "4300851", start: 96_178_000, end: 96_179_999 }, + { code: "4303509", start: 96_180_000, end: 96_189_999 }, + { code: "4306502", start: 96_190_000, end: 96_192_999 }, + { code: "4305447", start: 96_193_000, end: 96_194_999 }, + { code: "4306056", start: 96_195_000, end: 96_199_999 }, + { code: "4315602", start: 96_200_001, end: 96_224_999 }, + { code: "4318507", start: 96_225_000, end: 96_229_999 }, + { code: "4317301", start: 96_230_000, end: 96_254_999 }, + { code: "4305439", start: 96_255_000, end: 96_269_999 }, + { code: "4312500", start: 96_270_000, end: 96_289_999 }, + { code: "4321352", start: 96_290_000, end: 96_299_999 }, + { code: "4311007", start: 96_300_000, end: 96_309_999 }, + { code: "4307104", start: 96_310_000, end: 96_329_999 }, + { code: "4301305", start: 96_330_000, end: 96_359_999 }, + { code: "4314209", start: 96_360_000, end: 96_394_999 }, + { code: "4305124", start: 96_395_000, end: 96_399_999 }, + { code: "4301602", start: 96_400_001, end: 96_444_999 }, + { code: "4300034", start: 96_445_000, end: 96_449_999 }, + { code: "4306601", start: 96_450_000, end: 96_459_999 }, + { code: "4309654", start: 96_460_000, end: 96_469_999 }, + { code: "4314506", start: 96_470_000, end: 96_486_999 }, + { code: "4314175", start: 96_487_000, end: 96_489_999 }, + { code: "4314605", start: 96_490_000, end: 96_494_999 }, + { code: "4304358", start: 96_495_000, end: 96_499_999 }, + { code: "4303004", start: 96_500_001, end: 96_529_999 }, + { code: "4314027", start: 96_530_000, end: 96_534_999 }, + { code: "4305132", start: 96_535_000, end: 96_539_999 }, + { code: "4300109", start: 96_540_000, end: 96_544_999 }, + { code: "4313391", start: 96_545_000, end: 96_569_999 }, + { code: "4302808", start: 96_570_000, end: 96_589_999 }, + { code: "4317004", start: 96_590_000, end: 96_599_999 }, + { code: "4304507", start: 96_600_000, end: 96_609_999 }, + { code: "4306908", start: 96_610_000, end: 96_634_999 }, + { code: "4300638", start: 96_635_000, end: 96_639_999 }, + { code: "4315701", start: 96_640_000, end: 96_684_999 }, + { code: "4314076", start: 96_685_000, end: 96_689_999 }, + { code: "4313953", start: 96_690_000, end: 96_699_999 }, + { code: "4318408", start: 96_700_000, end: 96_734_999 }, + { code: "4301750", start: 96_735_000, end: 96_739_999 }, + { code: "4301107", start: 96_740_000, end: 96_744_999 }, + { code: "4305355", start: 96_745_000, end: 96_749_999 }, + { code: "4302709", start: 96_750_000, end: 96_754_999 }, + { code: "4312252", start: 96_755_000, end: 96_759_999 }, + { code: "4321105", start: 96_760_000, end: 96_764_999 }, + { code: "4320354", start: 96_765_000, end: 96_769_999 }, + { code: "4305173", start: 96_770_000, end: 96_789_999 }, + { code: "4301909", start: 96_790_000, end: 96_799_999 }, + { code: "4316808", start: 96_800_001, end: 96_874_999 }, + { code: "4309159", start: 96_875_000, end: 96_877_999 }, + { code: "4322533", start: 96_878_000, end: 96_879_999 }, + { code: "4322707", start: 96_880_000, end: 96_887_999 }, + { code: "4309571", start: 96_888_000, end: 96_889_999 }, + { code: "4320677", start: 96_890_000, end: 96_899_999 }, + { code: "4320701", start: 96_900_000, end: 96_907_999 }, + { code: "4314068", start: 96_908_000, end: 96_909_999 }, + { code: "4320263", start: 96_910_000, end: 96_919_999 }, + { code: "4311239", start: 96_920_000, end: 96_924_999 }, + { code: "4309753", start: 96_925_000, end: 96_929_999 }, + { code: "4304200", start: 96_930_000, end: 96_949_999 }, + { code: "4301206", start: 96_950_000, end: 96_989_999 }, + { code: "4307815", start: 96_990_000, end: 96_999_999 }, + { code: "4316907", start: 97_000_001, end: 97_179_999 }, + { code: "4306379", start: 97_180_000, end: 97_184_999 }, + { code: "4310538", start: 97_185_000, end: 97_189_999 }, + { code: "4319125", start: 97_190_000, end: 97_194_999 }, + { code: "4320651", start: 97_195_000, end: 97_199_999 }, + { code: "4315503", start: 97_200_000, end: 97_209_999 }, + { code: "4308409", start: 97_210_000, end: 97_219_999 }, + { code: "4308003", start: 97_220_000, end: 97_229_999 }, + { code: "4318432", start: 97_230_000, end: 97_249_999 }, + { code: "4313102", start: 97_250_000, end: 97_279_999 }, + { code: "4306700", start: 97_280_000, end: 97_299_999 }, + { code: "4318309", start: 97_300_000, end: 97_334_999 }, + { code: "4316972", start: 97_335_000, end: 97_339_999 }, + { code: "4319604", start: 97_340_000, end: 97_384_999 }, + { code: "4323457", start: 97_385_000, end: 97_389_999 }, + { code: "4311502", start: 97_390_000, end: 97_399_999 }, + { code: "4319406", start: 97_400_000, end: 97_409_999 }, + { code: "4312104", start: 97_410_000, end: 97_417_999 }, + { code: "4321493", start: 97_418_000, end: 97_419_999 }, + { code: "4319802", start: 97_420_000, end: 97_449_999 }, + { code: "4302907", start: 97_450_000, end: 97_499_999 }, + { code: "4322400", start: 97_500_001, end: 97_537_999 }, + { code: "4301875", start: 97_538_000, end: 97_539_999 }, + { code: "4300406", start: 97_540_001, end: 97_559_999 }, + { code: "4315305", start: 97_560_000, end: 97_569_999 }, + { code: "4317103", start: 97_570_001, end: 97_589_999 }, + { code: "4316402", start: 97_590_000, end: 97_609_999 }, + { code: "4318101", start: 97_610_000, end: 97_639_999 }, + { code: "4311759", start: 97_640_000, end: 97_644_999 }, + { code: "4311718", start: 97_645_000, end: 97_649_999 }, + { code: "4310603", start: 97_650_000, end: 97_669_999 }, + { code: "4318002", start: 97_670_000, end: 97_684_999 }, + { code: "4310553", start: 97_685_000, end: 97_689_999 }, + { code: "4308656", start: 97_690_000, end: 97_699_999 }, + { code: "4317400", start: 97_700_000, end: 97_752_999 }, + { code: "4304655", start: 97_753_000, end: 97_754_999 }, + { code: "4322376", start: 97_755_000, end: 97_759_999 }, + { code: "4311106", start: 97_760_000, end: 97_769_999 }, + { code: "4313037", start: 97_770_000, end: 97_799_999 }, + { code: "4318903", start: 97_800_000, end: 97_842_999 }, + { code: "4315958", start: 97_843_000, end: 97_844_999 }, + { code: "4306353", start: 97_845_000, end: 97_849_999 }, + { code: "4302501", start: 97_850_000, end: 97_869_999 }, + { code: "4317707", start: 97_870_000, end: 97_879_999 }, + { code: "4319208", start: 97_880_000, end: 97_884_999 }, + { code: "4314555", start: 97_885_000, end: 97_899_999 }, + { code: "4305207", start: 97_900_000, end: 97_919_999 }, + { code: "4319372", start: 97_920_000, end: 97_929_999 }, + { code: "4303301", start: 97_930_000, end: 97_934_999 }, + { code: "4312179", start: 97_935_000, end: 97_939_999 }, + { code: "4316477", start: 97_940_000, end: 97_949_999 }, + { code: "4309506", start: 97_950_000, end: 97_959_999 }, + { code: "4320578", start: 97_960_000, end: 97_969_999 }, + { code: "4316303", start: 97_970_000, end: 97_979_999 }, + { code: "4319307", start: 97_980_000, end: 97_999_999 }, + { code: "4306106", start: 98_000_001, end: 98_059_999 }, + { code: "4302220", start: 98_118_000, end: 98_119_999 }, + { code: "4302238", start: 98_120_000, end: 98_124_999 }, + { code: "4308458", start: 98_125_000, end: 98_129_999 }, + { code: "4311205", start: 98_130_000, end: 98_139_999 }, + { code: "4315321", start: 98_140_000, end: 98_149_999 }, + { code: "4314472", start: 98_150_000, end: 98_159_999 }, + { code: "4310751", start: 98_160_000, end: 98_169_999 }, + { code: "4322202", start: 98_170_000, end: 98_174_999 }, + { code: "4311130", start: 98_175_000, end: 98_179_999 }, + { code: "4311155", start: 98_180_000, end: 98_199_999 }, + { code: "4310009", start: 98_200_000, end: 98_229_999 }, + { code: "4315354", start: 98_230_000, end: 98_239_999 }, + { code: "4316709", start: 98_240_000, end: 98_249_999 }, + { code: "4316436", start: 98_250_000, end: 98_269_999 }, + { code: "4314308", start: 98_270_000, end: 98_279_999 }, + { code: "4313904", start: 98_280_000, end: 98_289_999 }, + { code: "4305702", start: 98_290_000, end: 98_299_999 }, + { code: "4313706", start: 98_300_000, end: 98_319_999 }, + { code: "4311429", start: 98_320_000, end: 98_322_999 }, + { code: "4319364", start: 98_323_000, end: 98_324_999 }, + { code: "4318457", start: 98_325_000, end: 98_329_999 }, + { code: "4316428", start: 98_330_000, end: 98_334_999 }, + { code: "4302154", start: 98_335_000, end: 98_337_999 }, + { code: "4313490", start: 98_338_000, end: 98_339_999 }, + { code: "4305157", start: 98_340_000, end: 98_344_999 }, + { code: "4314456", start: 98_345_000, end: 98_349_999 }, + { code: "4310850", start: 98_350_000, end: 98_359_999 }, + { code: "4315909", start: 98_360_000, end: 98_367_999 }, + { code: "4306072", start: 98_368_000, end: 98_369_999 }, + { code: "4313441", start: 98_370_000, end: 98_379_999 }, + { code: "4320206", start: 98_380_000, end: 98_384_999 }, + { code: "4306429", start: 98_385_000, end: 98_389_999 }, + { code: "4307302", start: 98_390_000, end: 98_399_999 }, + { code: "4308508", start: 98_400_000, end: 98_409_999 }, + { code: "4321329", start: 98_410_000, end: 98_414_999 }, + { code: "4323507", start: 98_415_000, end: 98_429_999 }, + { code: "4313805", start: 98_430_000, end: 98_434_999 }, + { code: "4314498", start: 98_435_000, end: 98_439_999 }, + { code: "4303400", start: 98_440_000, end: 98_449_999 }, + { code: "4323101", start: 98_450_000, end: 98_459_999 }, + { code: "4310504", start: 98_460_000, end: 98_464_999 }, + { code: "4300646", start: 98_465_000, end: 98_469_999 }, + { code: "4314704", start: 98_470_000, end: 98_479_999 }, + { code: "4300505", start: 98_480_000, end: 98_499_999 }, + { code: "4321402", start: 98_500_000, end: 98_527_999 }, + { code: "4306320", start: 98_528_000, end: 98_529_999 }, + { code: "4301859", start: 98_530_000, end: 98_534_999 }, + { code: "4323705", start: 98_535_000, end: 98_539_999 }, + { code: "4312302", start: 98_540_000, end: 98_549_999 }, + { code: "4315404", start: 98_550_000, end: 98_559_999 }, + { code: "4302600", start: 98_560_000, end: 98_569_999 }, + { code: "4304002", start: 98_570_000, end: 98_574_999 }, + { code: "4302378", start: 98_575_000, end: 98_579_999 }, + { code: "4305900", start: 98_580_000, end: 98_589_999 }, + { code: "4317806", start: 98_590_000, end: 98_594_999 }, + { code: "4319737", start: 98_595_000, end: 98_599_999 }, + { code: "4321907", start: 98_600_000, end: 98_634_999 }, + { code: "4307450", start: 98_635_000, end: 98_639_999 }, + { code: "4306007", start: 98_640_000, end: 98_669_999 }, + { code: "4309704", start: 98_670_000, end: 98_674_999 }, + { code: "4320230", start: 98_675_000, end: 98_679_999 }, + { code: "4321477", start: 98_680_000, end: 98_689_999 }, + { code: "4319109", start: 98_690_000, end: 98_699_999 }, + { code: "4310207", start: 98_700_000, end: 98_732_999 }, + { code: "4302584", start: 98_733_000, end: 98_734_999 }, + { code: "4305871", start: 98_735_000, end: 98_739_999 }, + { code: "4301503", start: 98_740_000, end: 98_749_999 }, + { code: "4300208", start: 98_750_000, end: 98_757_999 }, + { code: "4313334", start: 98_758_000, end: 98_759_999 }, + { code: "4305405", start: 98_760_000, end: 98_764_999 }, + { code: "4310413", start: 98_765_000, end: 98_769_999 }, + { code: "4305009", start: 98_770_000, end: 98_779_999 }, + { code: "4317202", start: 98_780_001, end: 98_799_999 }, + { code: "4317509", start: 98_800_001, end: 98_849_999 }, + { code: "4323754", start: 98_850_000, end: 98_854_999 }, + { code: "4306932", start: 98_855_000, end: 98_859_999 }, + { code: "4307831", start: 98_860_000, end: 98_864_999 }, + { code: "4319158", start: 98_865_000, end: 98_869_999 }, + { code: "4309001", start: 98_870_000, end: 98_894_999 }, + { code: "4320321", start: 98_895_000, end: 98_897_999 }, + { code: "4322343", start: 98_898_000, end: 98_899_999 }, + { code: "4300455", start: 98_905_000, end: 98_909_999 }, + { code: "4321808", start: 98_910_000, end: 98_914_999 }, + { code: "4310405", start: 98_915_000, end: 98_917_999 }, + { code: "4302204", start: 98_918_000, end: 98_918_999 }, + { code: "4313011", start: 98_919_000, end: 98_919_999 }, + { code: "4309605", start: 98_920_000, end: 98_924_999 }, + { code: "4306734", start: 98_925_000, end: 98_929_999 }, + { code: "4322103", start: 98_930_000, end: 98_939_999 }, + { code: "4322301", start: 98_940_000, end: 98_946_999 }, + { code: "4315057", start: 98_947_000, end: 98_949_999 }, + { code: "4300307", start: 98_950_000, end: 98_954_999 }, + { code: "4313425", start: 98_955_000, end: 98_957_999 }, + { code: "4318499", start: 98_958_000, end: 98_959_999 }, + { code: "4317905", start: 98_960_000, end: 98_969_999 }, + { code: "4304309", start: 98_970_000, end: 98_974_999 }, + { code: "4303707", start: 98_975_000, end: 98_979_999 }, + { code: "4315008", start: 98_980_000, end: 98_984_999 }, + { code: "4315073", start: 98_985_000, end: 98_994_999 }, + { code: "4315107", start: 98_995_000, end: 98_999_999 }, + { code: "4314100", start: 99_000_001, end: 99_139_999 }, + { code: "4307054", start: 99_140_000, end: 99_144_999 }, + { code: "4305975", start: 99_145_000, end: 99_149_999 }, + { code: "4311809", start: 99_150_000, end: 99_154_999 }, + { code: "4323408", start: 99_155_000, end: 99_159_999 }, + { code: "4308854", start: 99_160_000, end: 99_164_999 }, + { code: "4303558", start: 99_165_000, end: 99_169_999 }, + { code: "4320503", start: 99_170_000, end: 99_174_999 }, + { code: "4312674", start: 99_175_000, end: 99_179_999 }, + { code: "4312138", start: 99_180_000, end: 99_189_999 }, + { code: "4314779", start: 99_190_000, end: 99_199_999 }, + { code: "4309407", start: 99_200_000, end: 99_214_999 }, + { code: "4322350", start: 99_215_000, end: 99_219_999 }, + { code: "4306452", start: 99_220_000, end: 99_239_999 }, + { code: "4319711", start: 99_240_000, end: 99_249_999 }, + { code: "4320404", start: 99_250_000, end: 99_254_999 }, + { code: "4312351", start: 99_255_000, end: 99_259_999 }, + { code: "4304903", start: 99_260_000, end: 99_264_999 }, + { code: "4317558", start: 99_265_000, end: 99_269_999 }, + { code: "4318051", start: 99_270_000, end: 99_289_999 }, + { code: "4322558", start: 99_290_000, end: 99_299_999 }, + { code: "4320800", start: 99_300_000, end: 99_314_999 }, + { code: "4312427", start: 99_315_000, end: 99_319_999 }, + { code: "4309951", start: 99_320_000, end: 99_329_999 }, + { code: "4322152", start: 99_330_000, end: 99_339_999 }, + { code: "4311254", start: 99_340_000, end: 99_344_999 }, + { code: "4321469", start: 99_345_000, end: 99_349_999 }, + { code: "4323200", start: 99_350_000, end: 99_359_999 }, + { code: "4302006", start: 99_360_000, end: 99_369_999 }, + { code: "4308300", start: 99_370_000, end: 99_379_999 }, + { code: "4318465", start: 99_380_000, end: 99_399_999 }, + { code: "4307500", start: 99_400_000, end: 99_429_999 }, + { code: "4300554", start: 99_430_000, end: 99_434_999 }, + { code: "4304101", start: 99_435_000, end: 99_439_999 }, + { code: "4316451", start: 99_440_000, end: 99_449_999 }, + { code: "4320305", start: 99_450_000, end: 99_456_999 }, + { code: "4310876", start: 99_457_000, end: 99_459_999 }, + { code: "4305603", start: 99_460_000, end: 99_469_999 }, + { code: "4312658", start: 99_470_000, end: 99_489_999 }, + { code: "4321006", start: 99_490_000, end: 99_494_999 }, + { code: "4311270", start: 99_495_000, end: 99_499_999 }, + { code: "4304705", start: 99_500_000, end: 99_522_999 }, + { code: "4300471", start: 99_523_000, end: 99_524_999 }, + { code: "4317756", start: 99_525_000, end: 99_527_999 }, + { code: "4305850", start: 99_528_000, end: 99_529_999 }, + { code: "4305306", start: 99_530_000, end: 99_559_999 }, + { code: "4320107", start: 99_560_000, end: 99_579_999 }, + { code: "4312955", start: 99_580_000, end: 99_584_999 }, + { code: "4301958", start: 99_585_000, end: 99_589_999 }, + { code: "4316204", start: 99_590_000, end: 99_599_999 }, + { code: "4312708", start: 99_600_000, end: 99_604_999 }, + { code: "4309126", start: 99_605_000, end: 99_609_999 }, + { code: "4315552", start: 99_610_000, end: 99_614_999 }, + { code: "4321956", start: 99_615_000, end: 99_639_999 }, + { code: "4319703", start: 99_640_000, end: 99_644_999 }, + { code: "4306957", start: 99_645_000, end: 99_649_999 }, + { code: "4302055", start: 99_650_000, end: 99_654_999 }, + { code: "4308052", start: 99_655_000, end: 99_659_999 }, + { code: "4303806", start: 99_660_000, end: 99_664_999 }, + { code: "4306130", start: 99_665_000, end: 99_669_999 }, + { code: "4316105", start: 99_670_000, end: 99_674_999 }, + { code: "4321857", start: 99_675_000, end: 99_679_999 }, + { code: "4305801", start: 99_680_000, end: 99_686_999 }, + { code: "4313466", start: 99_687_000, end: 99_689_999 }, + { code: "4311601", start: 99_690_000, end: 99_697_999 }, + { code: "4306924", start: 99_698_000, end: 99_699_999 }, + { code: "4307005", start: 99_700_001, end: 99_717_999 }, + { code: "4314134", start: 99_718_000, end: 99_719_999 }, + { code: "4315313", start: 99_720_000, end: 99_724_999 }, + { code: "4321634", start: 99_725_000, end: 99_729_999 }, + { code: "4310900", start: 99_730_000, end: 99_734_999 }, + { code: "4314787", start: 99_735_000, end: 99_739_999 }, + { code: "4301701", start: 99_740_000, end: 99_749_999 }, + { code: "4307203", start: 99_750_000, end: 99_759_999 }, + { code: "4310702", start: 99_760_000, end: 99_769_999 }, + { code: "4300901", start: 99_770_000, end: 99_789_999 }, + { code: "4312005", start: 99_790_000, end: 99_794_999 }, + { code: "4301925", start: 99_795_000, end: 99_799_999 }, + { code: "4311908", start: 99_800_000, end: 99_809_999 }, + { code: "4320602", start: 99_810_000, end: 99_819_999 }, + { code: "4322905", start: 99_820_000, end: 99_824_999 }, + { code: "4304853", start: 99_825_000, end: 99_829_999 }, + { code: "4308706", start: 99_830_000, end: 99_834_999 }, + { code: "4301552", start: 99_835_000, end: 99_837_999 }, + { code: "4305116", start: 99_838_000, end: 99_839_999 }, + { code: "4316600", start: 99_840_000, end: 99_849_999 }, + { code: "4313607", start: 99_850_000, end: 99_854_999 }, + { code: "4318424", start: 99_855_000, end: 99_859_999 }, + { code: "4303202", start: 99_860_000, end: 99_869_999 }, + { code: "4318606", start: 99_870_000, end: 99_877_999 }, + { code: "4322186", start: 99_878_000, end: 99_879_999 }, + { code: "4311700", start: 99_880_000, end: 99_889_999 }, + { code: "4312203", start: 99_890_000, end: 99_894_999 }, + { code: "4317954", start: 99_895_000, end: 99_899_999 }, + { code: "4308904", start: 99_900_000, end: 99_909_999 }, + { code: "4308250", start: 99_910_000, end: 99_919_999 }, + { code: "4306973", start: 99_920_000, end: 99_924_999 }, + { code: "4310462", start: 99_925_000, end: 99_929_999 }, + { code: "4307559", start: 99_930_000, end: 99_939_999 }, + { code: "4309803", start: 99_940_000, end: 99_949_999 }, + { code: "4320909", start: 99_950_000, end: 99_951_999 }, + { code: "4316733", start: 99_952_000, end: 99_954_999 }, + { code: "4323358", start: 99_955_000, end: 99_959_999 }, + { code: "4305371", start: 99_960_000, end: 99_964_999 }, + { code: "4300059", start: 99_965_000, end: 99_969_999 }, + { code: "4305504", start: 99_970_000, end: 99_979_999 }, + { code: "4306304", start: 99_980_000, end: 99_989_999 }, + { code: "4312625", start: 99_990_000, end: 99_999_999 }, +]; diff --git a/src/get-municipality-by-cep/get-municipality-by-cep.test.ts b/src/get-municipality-by-cep/get-municipality-by-cep.test.ts new file mode 100644 index 000000000..db12f10de --- /dev/null +++ b/src/get-municipality-by-cep/get-municipality-by-cep.test.ts @@ -0,0 +1,155 @@ +import * as fc from "fast-check"; + +import { type Municipality } from "../_internals/constants/municipalities"; +import { anyGarbage, digits, digitsOfOtherLength } from "../_internals/test/arbitraries"; +import { expectNeverThrows } from "../_internals/test/properties"; +import { describe, expect, expectTypeOf, it, test } from "../_internals/test/runtime"; +import { getMunicipalityByCode } from "../get-municipality-by-code/get-municipality-by-code"; +import { CEP_RANGES } from "./constants"; +import { getMunicipalityByCep } from "./get-municipality-by-cep"; + +describe("getMunicipalityByCep", () => { + it("should return São Paulo for a formatted CEP of Avenida Paulista", () => { + expect(getMunicipalityByCep("01310-100")).toEqual({ + code: "3550308", + name: "São Paulo", + stateCode: "SP", + }); + }); + + it("should return Rio de Janeiro for a CEP given as a number", () => { + expect(getMunicipalityByCep(20_040_020)).toEqual({ + code: "3304557", + name: "Rio de Janeiro", + stateCode: "RJ", + }); + }); + + it("should accept the punctuated forms isValidCep accepts", () => { + expect(getMunicipalityByCep("92.500-000")?.stateCode).toBe("RS"); + expect(getMunicipalityByCep("70 040 010")?.stateCode).toBe("DF"); + }); + + it("should return the owner of the first and of the last CEP of the whole table", () => { + expect(getMunicipalityByCep("01000-001")).toEqual({ + code: "3550308", + name: "São Paulo", + stateCode: "SP", + }); + expect(getMunicipalityByCep("99999-999")).toEqual({ + code: "4312625", + name: "Muliterno", + stateCode: "RS", + }); + }); + + it("should return null for a CEP below the first range", () => { + expect(getMunicipalityByCep("00000000")).toBeNull(); + expect(getMunicipalityByCep("00999999")).toBeNull(); + }); + + it("should return null for the gap between Mato Grosso and Mato Grosso do Sul", () => { + expect(getMunicipalityByCep("78900000")).toBeNull(); + expect(getMunicipalityByCep("78999999")).toBeNull(); + }); + + it("should return a fresh copy that does not mutate the underlying constant", () => { + const municipality = getMunicipalityByCep("01310100"); + + if (municipality) Object.assign(municipality, { name: "X" }); + + expect(getMunicipalityByCep("01310100")?.name).toBe("São Paulo"); + }); + + it("should return null for a CEP with the wrong length", () => { + expect(getMunicipalityByCep("12345")).toBeNull(); + expect(getMunicipalityByCep("013101000")).toBeNull(); + expect(getMunicipalityByCep(1_310_100)).toBeNull(); + expect(getMunicipalityByCep("")).toBeNull(); + }); + + it("should return null for a value with a letter, not read its digits alone", () => { + expect(getMunicipalityByCep("abc01310100")).toBeNull(); + expect(getMunicipalityByCep("01310-10a")).toBeNull(); + }); + + it("should return null for a negative or a fractional number", () => { + expect(getMunicipalityByCep(-20_040_020)).toBeNull(); + expect(getMunicipalityByCep(2_004_002.5)).toBeNull(); + }); + + it("should return null for values that are not a string or a number", () => { + // @ts-expect-error: intentionally invalid input + expect(getMunicipalityByCep(null)).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(getMunicipalityByCep()).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(getMunicipalityByCep(["01310100"])).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(getMunicipalityByCep({ toString: () => "01310100" })).toBeNull(); + expect(getMunicipalityByCep("__proto__")).toBeNull(); + }); + + it("should hold a table in ascending, non-overlapping order", () => { + for (const [index, range] of CEP_RANGES.slice(1).entries()) { + const previous = CEP_RANGES[index]; + + expect(range.start).toBeGreaterThan(previous.end); + } + + expect(CEP_RANGES[0].start).toBe(1_000_001); + expect(CEP_RANGES.at(-1)?.end).toBe(99_999_999); + }); + + it("should reference only IBGE codes getMunicipalityByCode resolves", () => { + for (const range of CEP_RANGES) { + expect(getMunicipalityByCode(range.code)).not.toBeNull(); + } + }); + + describe("properties", () => { + test("should never throw, regardless of the input", () => { + expectNeverThrows(getMunicipalityByCep, anyGarbage); + }); + + test("should return null for digits of any length other than 8", () => { + fc.assert( + fc.property(digitsOfOtherLength(12, [8]), (value) => { + expect(getMunicipalityByCep(value)).toBeNull(); + }), + ); + }); + + test("should answer the same for a CEP with and without its hyphen", () => { + fc.assert( + fc.property(digits(8), (cep) => { + expect(getMunicipalityByCep(`${cep.slice(0, 5)}-${cep.slice(5)}`)).toEqual( + getMunicipalityByCep(cep), + ); + }), + ); + }); + + test("should resolve every CEP range to the municipality getMunicipalityByCode resolves its code to", () => { + const rangeArbitrary = fc.constantFrom(...CEP_RANGES); + + fc.assert( + fc.property(rangeArbitrary, (range) => { + expect(getMunicipalityByCep(String(range.start).padStart(8, "0"))).toEqual( + getMunicipalityByCode(range.code), + ); + expect(getMunicipalityByCep(String(range.end).padStart(8, "0"))).toEqual( + getMunicipalityByCode(range.code), + ); + }), + ); + }); + }); +}); + +describe("getMunicipalityByCep types", () => { + test("should take a string or number and return a Municipality or null", () => { + expectTypeOf(getMunicipalityByCep).parameter(0).toEqualTypeOf(); + expectTypeOf(getMunicipalityByCep).returns.toEqualTypeOf(); + }); +}); diff --git a/src/get-municipality-by-cep/get-municipality-by-cep.ts b/src/get-municipality-by-cep/get-municipality-by-cep.ts new file mode 100644 index 000000000..e7be3dc37 --- /dev/null +++ b/src/get-municipality-by-cep/get-municipality-by-cep.ts @@ -0,0 +1,49 @@ +import { type Municipality } from "../_internals/constants/municipalities"; +import { findCepRange } from "../_internals/find-cep-range/find-cep-range"; +import { getMunicipalityByCode } from "../get-municipality-by-code/get-municipality-by-code"; +import { CEP_RANGES } from "./constants"; + +export type { Municipality } from "../_internals/constants/municipalities"; + +/** + * Retrieves the Brazilian municipality a CEP (postal code) belongs to, from the CEP ranges the + * Correios assign to each municipality. It runs offline: the answer comes from the range table, + * not from a CEP API, so it says which municipality owns the range and not whether the CEP is + * in use. + * + * The value is accepted under the same rules as `isValidCep`: 8 digits, as a string or a number, + * with spaces, dots and hyphens ignored. A number cannot carry a leading zero, so a CEP that + * starts with `0` has to be given as a string. A number must also be a non-negative integer: a + * sign and a decimal point are not digits, so `-1310100` and `1310100.5` are rejected instead of + * being read as a CEP. + * + * A handful of municipalities the Correios range table lists share their CEP range with the + * municipality that absorbed them, or have no dedicated range at all, so a CEP inside a state + * range can still return `null` (or the range owner rather than every municipality of the + * state) even for a CEP whose state `getStateByCep` resolves. + * + * @param {string|number} value - The CEP, with or without formatting. + * @returns {Municipality|null} The matching `Municipality` object (the same shape + * `getMunicipalityByCode` returns), or `null` when the value is not a valid CEP or falls outside + * every range. + * + * @see Official: https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php + * Correios "Busca Faixa de CEP": a search by municipality answers its CEP range. + * @see Official: https://www.correios.com.br/acesso-a-informacao/licitacoes-e-contratos/credenciamento-ponto-de-coleta/arquivos/localidades + * Correios "Localidades alvo (CEPs ou faixas de CEP)", used to cross-check the ranges below. + * @see Based on: https://gist.github.com/hugosenari/ec1a7d88f5bdd01844424dbc9aff9590 + * Copy of the answers of the Correios search, one row per municipality. + * + * @example + * ```typescript + * getMunicipalityByCep("01310-100"); // { code: "3550308", name: "São Paulo", stateCode: "SP" } + * getMunicipalityByCep(20040020); // { code: "3304557", name: "Rio de Janeiro", stateCode: "RJ" } + * getMunicipalityByCep("00999-999"); // null + * getMunicipalityByCep("12345"); // null + * ``` + */ +export const getMunicipalityByCep = (value: string | number): Municipality | null => { + const range = findCepRange(value, CEP_RANGES); + + return range ? getMunicipalityByCode(range.code) : null; +}; diff --git a/src/get-municipality-by-code/get-municipality-by-code.test.ts b/src/get-municipality-by-code/get-municipality-by-code.test.ts index f0853a185..a60f7a2ce 100644 --- a/src/get-municipality-by-code/get-municipality-by-code.test.ts +++ b/src/get-municipality-by-code/get-municipality-by-code.test.ts @@ -1,6 +1,6 @@ import * as fc from "fast-check"; -import { type Municipality } from "../_internals/constants/cities"; +import { type Municipality } from "../_internals/constants/municipalities"; import { describe, expect, expectTypeOf, it, test } from "../_internals/test/runtime"; import { getMunicipalities } from "../get-municipalities/get-municipalities"; import { getMunicipalityByCode } from "./get-municipality-by-code"; diff --git a/src/get-municipality-by-code/get-municipality-by-code.ts b/src/get-municipality-by-code/get-municipality-by-code.ts index a8569b44a..e0f16bddf 100644 --- a/src/get-municipality-by-code/get-municipality-by-code.ts +++ b/src/get-municipality-by-code/get-municipality-by-code.ts @@ -1,9 +1,9 @@ -import { DATA as CITIES_DATA, type Municipality } from "../_internals/constants/cities"; +import { DATA as CITIES_DATA, type Municipality } from "../_internals/constants/municipalities"; import { DATA } from "../_internals/constants/states"; import { isLookupCode } from "../_internals/is-lookup-code/is-lookup-code"; import { sanitizeToDigits } from "../_internals/sanitize-to-digits/sanitize-to-digits"; -export type { Municipality } from "../_internals/constants/cities"; +export type { Municipality } from "../_internals/constants/municipalities"; /** * Looks up a Brazilian municipality by its 7 digit IBGE code, published by the IBGE. diff --git a/src/get-municipality/get-municipality.ts b/src/get-municipality/get-municipality.ts index 65e561685..64fcc9323 100644 --- a/src/get-municipality/get-municipality.ts +++ b/src/get-municipality/get-municipality.ts @@ -1,4 +1,4 @@ -import { DATA as CITIES_DATA } from "../_internals/constants/cities"; +import { DATA as CITIES_DATA } from "../_internals/constants/municipalities"; import { type StateCode } from "../_internals/constants/states"; import { isLookupCode } from "../_internals/is-lookup-code/is-lookup-code"; import { isNullish } from "../_internals/is-nullish/is-nullish"; diff --git a/src/get-state-by-cep/constants.ts b/src/get-state-by-cep/constants.ts new file mode 100644 index 000000000..a88b89092 --- /dev/null +++ b/src/get-state-by-cep/constants.ts @@ -0,0 +1,56 @@ +import { type StateCode } from "../_internals/constants/states"; + +/** One range of CEPs assigned by the Correios to a state. */ +type CepRange = { + /** Two letter code of the state that owns the range. */ + readonly state: StateCode; + /** First CEP of the range, as a number. */ + readonly start: number; + /** Last CEP of the range, as a number. */ + readonly end: number; +}; + +/** + * CEP ranges of each state ("Faixa de CEP" per UF), as answered by the Correios "Busca Faixa de + * CEP" search when only the UF is given, in ascending order. Amazonas, Distrito Federal and Goiás + * have two ranges each: Roraima sits inside the Amazonas block and the Goiás municipalities + * around Brasília sit inside the Distrito Federal block. No range covers `00000-000` to + * `00999-999` nor `78900-000` to `78999-999`. A range is the block the state owns, not a promise + * that every CEP in it is in use: `10000-000` to `10999-999` sits unused inside the São Paulo one. + * + * @see Official: https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php + * @see Based on: https://gist.github.com/tamnil/792a6a66f6df9fc028041587cfca0c3d + * Copy of the answers of the Correios search, the rows with an empty city are the state ranges. + */ +export const CEP_RANGES: readonly CepRange[] = [ + { state: "SP", start: 1_000_000, end: 19_999_999 }, + { state: "RJ", start: 20_000_000, end: 28_999_999 }, + { state: "ES", start: 29_000_000, end: 29_999_999 }, + { state: "MG", start: 30_000_000, end: 39_999_999 }, + { state: "BA", start: 40_000_000, end: 48_999_999 }, + { state: "SE", start: 49_000_000, end: 49_999_999 }, + { state: "PE", start: 50_000_000, end: 56_999_999 }, + { state: "AL", start: 57_000_000, end: 57_999_999 }, + { state: "PB", start: 58_000_000, end: 58_999_999 }, + { state: "RN", start: 59_000_000, end: 59_999_999 }, + { state: "CE", start: 60_000_000, end: 63_999_999 }, + { state: "PI", start: 64_000_000, end: 64_999_999 }, + { state: "MA", start: 65_000_000, end: 65_999_999 }, + { state: "PA", start: 66_000_000, end: 68_899_999 }, + { state: "AP", start: 68_900_000, end: 68_999_999 }, + { state: "AM", start: 69_000_000, end: 69_299_999 }, + { state: "RR", start: 69_300_000, end: 69_399_999 }, + { state: "AM", start: 69_400_000, end: 69_899_999 }, + { state: "AC", start: 69_900_000, end: 69_999_999 }, + { state: "DF", start: 70_000_000, end: 72_799_999 }, + { state: "GO", start: 72_800_000, end: 72_999_999 }, + { state: "DF", start: 73_000_000, end: 73_699_999 }, + { state: "GO", start: 73_700_000, end: 76_799_999 }, + { state: "RO", start: 76_800_000, end: 76_999_999 }, + { state: "TO", start: 77_000_000, end: 77_999_999 }, + { state: "MT", start: 78_000_000, end: 78_899_999 }, + { state: "MS", start: 79_000_000, end: 79_999_999 }, + { state: "PR", start: 80_000_000, end: 87_999_999 }, + { state: "SC", start: 88_000_000, end: 89_999_999 }, + { state: "RS", start: 90_000_000, end: 99_999_999 }, +]; diff --git a/src/get-state-by-cep/get-state-by-cep.test.ts b/src/get-state-by-cep/get-state-by-cep.test.ts new file mode 100644 index 000000000..5c79f868f --- /dev/null +++ b/src/get-state-by-cep/get-state-by-cep.test.ts @@ -0,0 +1,188 @@ +import * as fc from "fast-check"; + +import { type State } from "../_internals/constants/states"; +import { anyGarbage, digits, digitsOfOtherLength } from "../_internals/test/arbitraries"; +import { expectNeverThrows } from "../_internals/test/properties"; +import { describe, expect, expectTypeOf, it, test } from "../_internals/test/runtime"; +import { CEP_RANGES } from "./constants"; +import { getStateByCep } from "./get-state-by-cep"; + +const RANGE_BOUNDARIES: [string, string, string][] = [ + ["SP", "01000000", "19999999"], + ["RJ", "20000000", "28999999"], + ["ES", "29000000", "29999999"], + ["MG", "30000000", "39999999"], + ["BA", "40000000", "48999999"], + ["SE", "49000000", "49999999"], + ["PE", "50000000", "56999999"], + ["AL", "57000000", "57999999"], + ["PB", "58000000", "58999999"], + ["RN", "59000000", "59999999"], + ["CE", "60000000", "63999999"], + ["PI", "64000000", "64999999"], + ["MA", "65000000", "65999999"], + ["PA", "66000000", "68899999"], + ["AP", "68900000", "68999999"], + ["AM", "69000000", "69299999"], + ["RR", "69300000", "69399999"], + ["AM", "69400000", "69899999"], + ["AC", "69900000", "69999999"], + ["DF", "70000000", "72799999"], + ["GO", "72800000", "72999999"], + ["DF", "73000000", "73699999"], + ["GO", "73700000", "76799999"], + ["RO", "76800000", "76999999"], + ["TO", "77000000", "77999999"], + ["MT", "78000000", "78899999"], + ["MS", "79000000", "79999999"], + ["PR", "80000000", "87999999"], + ["SC", "88000000", "89999999"], + ["RS", "90000000", "99999999"], +]; + +describe("getStateByCep", () => { + it("should return São Paulo for a formatted CEP of Avenida Paulista", () => { + expect(getStateByCep("01310-100")).toEqual({ + code: "SP", + name: "São Paulo", + regionCode: "SE", + regionName: "Sudeste", + ibgeCode: 35, + }); + }); + + it("should return Rio de Janeiro for a CEP given as a number", () => { + expect(getStateByCep(20_040_020)).toEqual({ + code: "RJ", + name: "Rio de Janeiro", + regionCode: "SE", + regionName: "Sudeste", + ibgeCode: 33, + }); + }); + + it("should accept the punctuated forms isValidCep accepts", () => { + expect(getStateByCep("92.500-000")?.code).toBe("RS"); + expect(getStateByCep("70 040 010")?.code).toBe("DF"); + }); + + it("should return the owner of the first and of the last CEP of every range", () => { + for (const [code, first, last] of RANGE_BOUNDARIES) { + expect(getStateByCep(first)?.code).toBe(code); + expect(getStateByCep(last)?.code).toBe(code); + } + }); + + it("should return a CEP in the middle of a range", () => { + expect(getStateByCep("69050000")?.code).toBe("AM"); + expect(getStateByCep("69650000")?.code).toBe("AM"); + expect(getStateByCep("71000000")?.code).toBe("DF"); + expect(getStateByCep("73350000")?.code).toBe("DF"); + expect(getStateByCep("72900000")?.code).toBe("GO"); + expect(getStateByCep("74000000")?.code).toBe("GO"); + }); + + it("should return the owner of the range for a CEP block no city uses", () => { + expect(getStateByCep("10000000")?.code).toBe("SP"); + expect(getStateByCep("10999999")?.code).toBe("SP"); + }); + + it("should return null for the CEPs below the first range", () => { + expect(getStateByCep("00000000")).toBeNull(); + expect(getStateByCep("00999999")).toBeNull(); + }); + + it("should return null for the gap between Mato Grosso and Mato Grosso do Sul", () => { + expect(getStateByCep("78900000")).toBeNull(); + expect(getStateByCep("78950000")).toBeNull(); + expect(getStateByCep("78999999")).toBeNull(); + }); + + it("should hold a table in ascending order whose only inner gap is the one between Mato Grosso and Mato Grosso do Sul", () => { + const steps: string[] = []; + + for (const [index, range] of CEP_RANGES.slice(1).entries()) { + const previous = CEP_RANGES[index]; + + if (range.start !== previous.end + 1) steps.push(`${previous.end}|${range.start}`); + } + + expect(steps).toEqual(["78899999|79000000"]); + expect(CEP_RANGES).toHaveLength(30); + expect(CEP_RANGES[0].start).toBe(1_000_000); + expect(CEP_RANGES.at(-1)?.end).toBe(99_999_999); + }); + + it("should return a fresh copy that does not mutate the underlying constant", () => { + const state = getStateByCep("01310100"); + if (state) Object.assign(state, { name: "X" }); + + expect(getStateByCep("01310100")?.name).toBe("São Paulo"); + }); + + it("should return null for a CEP with the wrong length", () => { + expect(getStateByCep("12345")).toBeNull(); + expect(getStateByCep("013101000")).toBeNull(); + expect(getStateByCep(1_310_100)).toBeNull(); + expect(getStateByCep("")).toBeNull(); + }); + + it("should return null for a value with a letter, not read its digits alone", () => { + expect(getStateByCep("abc01310100")).toBeNull(); + expect(getStateByCep("01310-10a")).toBeNull(); + }); + + it("should return null for a negative or a fractional number", () => { + expect(getStateByCep(-20_040_020)).toBeNull(); + expect(getStateByCep(2_004_002.5)).toBeNull(); + }); + + it("should return null for values that are not a string or a number", () => { + // @ts-expect-error: intentionally invalid input + expect(getStateByCep(null)).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(getStateByCep()).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(getStateByCep(["01310100"])).toBeNull(); + // @ts-expect-error: intentionally invalid input + expect(getStateByCep({ toString: () => "01310100" })).toBeNull(); + expect(getStateByCep("__proto__")).toBeNull(); + }); + + describe("properties", () => { + test("should never throw, regardless of the input", () => { + expectNeverThrows(getStateByCep, anyGarbage); + }); + + test("should return null for digits of any length other than 8", () => { + fc.assert( + fc.property(digitsOfOtherLength(12, [8]), (value) => { + expect(getStateByCep(value)).toBeNull(); + }), + ); + }); + + test("should answer the same for a CEP with and without its hyphen", () => { + fc.assert( + fc.property(digits(8), (cep) => { + expect(getStateByCep(`${cep.slice(0, 5)}-${cep.slice(5)}`)).toEqual(getStateByCep(cep)); + }), + ); + }); + + test("should place every CEP from 80000-000 up in the Sul region", () => { + fc.assert( + fc.property(fc.integer({ min: 80_000_000, max: 99_999_999 }), (cep) => { + expect(getStateByCep(cep)?.regionCode).toBe("S"); + }), + ); + }); + }); +}); + +describe("getStateByCep types", () => { + test("should take a string or number and return a State or null", () => { + expectTypeOf(getStateByCep).parameter(0).toEqualTypeOf(); + expectTypeOf(getStateByCep).returns.toEqualTypeOf(); + }); +}); diff --git a/src/get-state-by-cep/get-state-by-cep.ts b/src/get-state-by-cep/get-state-by-cep.ts new file mode 100644 index 000000000..ceef8b407 --- /dev/null +++ b/src/get-state-by-cep/get-state-by-cep.ts @@ -0,0 +1,48 @@ +import { DATA, type State } from "../_internals/constants/states"; +import { findCepRange } from "../_internals/find-cep-range/find-cep-range"; +import { CEP_RANGES } from "./constants"; + +export type { State } from "../_internals/constants/states"; + +/** + * Retrieves the Brazilian state a CEP (postal code) belongs to, from the CEP ranges the Correios + * assign to each state. It runs offline: the answer comes from the range table, not from a CEP + * API, so it says which state owns the range and not whether the CEP is in use. + * + * The value is accepted under the same rules as `isValidCep`: 8 digits, as a string or a number, + * with spaces, dots and hyphens ignored. A number cannot carry a leading zero, so a CEP of São + * Paulo that starts with `0` has to be given as a string. A number must also be a non-negative + * integer: a sign and a decimal point are not digits, so `-20040020` and `2004002.5` are rejected + * instead of being read as a CEP. + * + * Amazonas, Distrito Federal and Goiás have two ranges each. No state range covers `00000-000` to + * `00999-999` nor `78900-000` to `78999-999`, so a CEP in one of them returns `null`. Inside a + * range the answer is the owner of the range even for a CEP no city uses, such as `10000-000`. + * + * @param {string|number} value - The CEP, with or without formatting. + * @returns {State|null} The matching `State` object, or `null` when the value is not a valid CEP + * or falls outside every range. + * + * @see Official: https://buscacepinter.correios.com.br/app/faixa_cep_uf_localidade/index.php + * Correios "Busca Faixa de CEP": a search by UF alone answers the ranges of the state. + * @see Official: https://www.correios.com.br/enviar/precisa-de-ajuda/tudo-sobre-cep + * @see Based on: https://gist.github.com/tamnil/792a6a66f6df9fc028041587cfca0c3d + * Copy of the answers of the Correios search, the rows with an empty city are the state ranges. + * + * @example + * ```typescript + * getStateByCep("01310-100"); // { code: "SP", name: "São Paulo", regionCode: "SE", regionName: "Sudeste", ibgeCode: 35 } + * getStateByCep(20040020); // { code: "RJ", name: "Rio de Janeiro", regionCode: "SE", regionName: "Sudeste", ibgeCode: 33 } + * getStateByCep("69300-000")?.code; // "RR" + * getStateByCep("72800-000")?.code; // "GO" + * getStateByCep("00999-999"); // null + * getStateByCep("12345"); // null + * getStateByCep(-20040020); // null + * ``` + */ +export const getStateByCep = (value: string | number): State | null => { + const range = findCepRange(value, CEP_RANGES); + const state = range && DATA.find((entry) => entry.code === range.state); + + return state ? { ...state } : null; +}; diff --git a/src/index.test.ts b/src/index.test.ts index deb4cf5b5..d3bebd827 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -187,10 +187,12 @@ const PUBLIC = [ "getLegalNaturesByCategory", "getMunicipalities", "getMunicipality", + "getMunicipalityByCep", "getMunicipalityByCode", "getNfeKeyInfo", "getPixKeyInfo", "getPixPayloadInfo", + "getStateByCep", "getStateByIbgeCode", "getStateCodeByName", "getStateNameByCode", diff --git a/src/index.ts b/src/index.ts index 3267ba776..49494748b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,7 +10,7 @@ import { isValidIe } from "./is-valid-ie/is-valid-ie"; import { isValidPis } from "./is-valid-pis/is-valid-pis"; export type { Bank } from "./_internals/constants/banks"; -export type { Municipality } from "./_internals/constants/cities"; +export type { Municipality } from "./_internals/constants/municipalities"; export type { State, StateCode, StateName } from "./_internals/constants/states"; export type { NumberToWordsGender } from "./_internals/number-to-words/number-to-words"; export { addBusinessDays } from "./add-business-days/add-business-days"; @@ -146,6 +146,7 @@ export { type GetMunicipalityParams, getMunicipality, } from "./get-municipality/get-municipality"; +export { getMunicipalityByCep } from "./get-municipality-by-cep/get-municipality-by-cep"; export { getMunicipalityByCode } from "./get-municipality-by-code/get-municipality-by-code"; export { type NfeKeyInfo, @@ -162,6 +163,7 @@ export { type PixPointOfInitiation, getPixPayloadInfo, } from "./get-pix-payload-info/get-pix-payload-info"; +export { getStateByCep } from "./get-state-by-cep/get-state-by-cep"; export { getStateByIbgeCode } from "./get-state-by-ibge-code/get-state-by-ibge-code"; export { getStateCodeByName } from "./get-state-code-by-name/get-state-code-by-name"; export { getStateNameByCode } from "./get-state-name-by-code/get-state-name-by-code";