first commit

This commit is contained in:
Arturo Corro 2025-03-11 00:21:04 -06:00
commit 1b5972d218
152 changed files with 304002 additions and 0 deletions

18
.editorconfig Normal file
View File

@ -0,0 +1,18 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2
[docker-compose.yml]
indent_size = 4

74
.env.example Normal file
View File

@ -0,0 +1,74 @@
APP_NAME=agroform
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_TIMEZONE=America/Mexico_City
APP_URL=http://localhost
APP_LOCALE=es
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=es_MX
APP_MAINTENANCE_DRIVER=file
# APP_MAINTENANCE_STORE=database
PHP_CLI_SERVER_WORKERS=4
BCRYPT_ROUNDS=12
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
DB_CONNECTION=mariadb
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
SESSION_DRIVER=redis
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database
CACHE_STORE=redis
CACHE_PREFIX=
MEMCACHED_HOST=127.0.0.1
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=log
MAIL_SCHEME=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"
AUTH_MODEL=Koneko\VuexyAdmin\Models\User
FORCE_HTTPS=
REDIS_CACHE_DB=
REDIS_SESSION_DB=
REDIS_QUEUE_DB=

12
.gitattributes vendored Normal file
View File

@ -0,0 +1,12 @@
* text=auto eol=lf
*.blade.php diff=html
*.css diff=css
*.html diff=html
*.md diff=markdown
*.php diff=php
/.github export-ignore
/.git export-ignore
CHANGELOG.md export-ignore
.styleci.yml export-ignore

25
.gitignore vendored Normal file
View File

@ -0,0 +1,25 @@
/.phpunit.cache
/node_modules
/public/build
/public/hot
/public/storage
/storage/*.key
/storage/pail
/vendor
.env
.env.backup
.env.production
.phpactor.json
.phpunit.result.cache
composer.lock
package-lock.json
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
/auth.json
/.fleet
/.idea
/.nova
/.vscode
/.zed

163
README.md Normal file
View File

@ -0,0 +1,163 @@
<p align="center">
<a href="https://koneko.mx" target="_blank">
<img src="https://git.koneko.mx/Koneko-ST/koneko-st/raw/branch/main/logo-images/horizontal-05.png" width="400" alt="Koneko Soluciones Tecnológicas Logo">
</a>
</p>
<p align="center">
<a href="https://packagist.org/packages/koneko/laravel-vuexy-admin"><img src="https://img.shields.io/packagist/v/koneko/laravel-vuexy-admin" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/koneko/laravel-vuexy-admin"><img src="https://img.shields.io/packagist/l/koneko/laravel-vuexy-admin" alt="License"></a>
<a href="mailto:contacto@koneko.mx"><img src="https://img.shields.io/badge/contact-email-green" alt="Email"></a>
</p>
---
# Laravel Vuexy Admin para México
**Laravel Vuexy Admin para México** es un proyecto basado en Laravel optimizado para necesidades específicas del mercado mexicano. Incluye herramientas avanzadas y una interfaz moderna inspirada en el template premium Vuexy.
## Características destacadas
- **características avanzadas**:
- Autenticación y gestión de usuarios con Laravel Fortify.
- Gestión de roles y permisos usando Spatie Permission.
- Tablas dinámicas con Laravel Datatables y Yajra.
- Integración con Redis para caching eficiente.
- Exportación y manejo de Excel mediante Maatwebsite.
## Requisitos del Sistema
- **PHP**: >= 8.2
- **Composer**: >= 2.0
- **Node.js**: >= 16.x
- **MySQL** o cualquier base de datos compatible con Laravel.
---
## Instalación
Este proyecto ofrece dos métodos de instalación: mediante Composer o manualmente. A continuación, te explicamos ambos procesos.
### Opción 1: Usar Composer (Recomendado)
Para instalar el proyecto rápidamente usando Composer, ejecuta el siguiente comando:
```bash
composer create-project koneko/laravel-vuexy-admin
```
Este comando realizará automáticamente los siguientes pasos:
1. Configurará el archivo `.env` basado en `.env.example`.
2. Generará la clave de la aplicación.
Una vez completado, debes configurar una base de datos válida en el archivo `.env` y luego ejecutar:
```bash
php artisan migrate --seed
```
Finalmente, compila los activos iniciales:
```bash
npm install
npm run dev
```
Inicia el servidor local con:
```bash
php artisan serve
```
---
### Opción 2: Instalación manual
Si prefieres instalar el proyecto de forma manual, sigue estos pasos:
1. Clona el repositorio:
```bash
git clone https://git.koneko.mx/Koneko-ST/laravel-vuexy-admin.git
cd laravel-vuexy-admin
```
2. Instala las dependencias de Composer:
```bash
composer install
```
3. Instala las dependencias de npm:
```bash
npm install
```
4. Configura las variables de entorno:
```bash
cp .env.example .env
```
5. Configura una base de datos válida en el archivo `.env`.
6. Genera la clave de la aplicación:
```bash
php artisan key:generate
```
7. Migra y llena la base de datos:
```bash
php artisan migrate --seed
```
8. Compila los activos frontend:
```bash
npm run dev
```
9. Inicia el servidor de desarrollo:
```bash
php artisan serve
```
---
## Notas importantes
- Asegúrate de tener instalado:
- **PHP**: >= 8.2
- **Composer**: >= 2.0
- **Node.js**: >= 16.x
---
## Uso del Template Vuexy
Este proyecto está diseñado para funcionar con el template premium [Vuexy](https://themeforest.net/item/vuexy-vuejs-html-laravel-admin-dashboard-template/23328599). Para utilizarlo:
1. Adquiere una licencia válida de Vuexy en [ThemeForest](https://themeforest.net/item/vuexy-vuejs-html-laravel-admin-dashboard-template/23328599).
2. Incluye los archivos necesarios en las carpetas correspondientes (`resources`, `public`, etc.) de este proyecto.
---
## Créditos
Este proyecto utiliza herramientas y recursos de código abierto, así como un template premium. Queremos agradecer a los desarrolladores y diseñadores que hacen posible esta implementación:
- [Laravel](https://laravel.com)
- [Vuexy Template](https://themeforest.net/item/vuexy-vuejs-html-laravel-admin-dashboard-template/23328599)
- [Spatie Permission](https://spatie.be/docs/laravel-permission)
- [Yajra Datatables](https://yajrabox.com/docs/laravel-datatables)
---
## Licencia
Este proyecto está licenciado bajo la licencia MIT. Consulta el archivo [LICENSE](LICENSE) para más detalles.
El template "Vuexy" debe adquirirse por separado y está sujeto a su propia licencia comercial.
---
<p align="center">
Hecho con ❤️ por <a href="https://koneko.mx">Koneko Soluciones Tecnológicas</a>
</p>

View File

@ -0,0 +1,8 @@
<?php
namespace App\Http\Controllers;
abstract class Controller
{
//
}

48
app/Models/User.php Normal file
View File

@ -0,0 +1,48 @@
<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
/** @use HasFactory<\Database\Factories\UserFactory> */
use HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var list<string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
}
}

View File

@ -0,0 +1,24 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}

18
artisan Normal file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env php
<?php
use Illuminate\Foundation\Application;
use Symfony\Component\Console\Input\ArgvInput;
define('LARAVEL_START', microtime(true));
// Register the Composer autoloader...
require __DIR__.'/vendor/autoload.php';
// Bootstrap Laravel and handle the command...
/** @var Application $app */
$app = require_once __DIR__.'/bootstrap/app.php';
$status = $app->handleCommand(new ArgvInput);
exit($status);

18
bootstrap/app.php Normal file
View File

@ -0,0 +1,18 @@
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();

2
bootstrap/cache/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

5
bootstrap/providers.php Normal file
View File

@ -0,0 +1,5 @@
<?php
return [
App\Providers\AppServiceProvider::class,
];

86
composer.json Normal file
View File

@ -0,0 +1,86 @@
{
"$schema": "https://getcomposer.org/schema.json",
"name": "koneko-st/agroform-website",
"description": "Sitio Web de Agroform basado en Laravel Vuexy Admin México.",
"keywords": ["laravel", "vuexy", "admin", "mexico", "koneko", "website", "agroform"],
"type": "project",
"license": "proprietary",
"private": true,
"require": {
"php": "^8.2",
"koneko/laravel-vuexy-admin": "dev-main",
"koneko/laravel-vuexy-website-admin": "dev-main",
"koneko/laravel-vuexy-website-layout-porto": "dev-main",
"laravel/framework": "^11.31",
"laravel/tinker": "^2.9"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"nunomaduro/collision": "^8.1"
},
"repositories": {
"koneko/laravel-vuexy-admin": {
"type": "path",
"url": "../laravel-modules/laravel-vuexy-admin",
"options": {
"symlink": true
}
},
"koneko/laravel-vuexy-website-admin": {
"type": "path",
"url": "../laravel-modules/laravel-vuexy-website-admin",
"options": {
"symlink": true
}
},
"koneko/laravel-vuexy-website-layout-porto": {
"type": "path",
"url": "../laravel-modules/laravel-vuexy-website-layout-porto",
"options": {
"symlink": true
}
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
],
"post-install-cmd": [
"[ ! -f .env ] && (bash -c './setup.sh' || echo 'Error en setup.sh') || echo '.env ya existe, saltando configuración'"
],
"post-update-cmd": [
"@php artisan package:discover --ansi"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"authors": [
{
"name": "Arturo Corro Pacheco",
"email": "arturo@koneko.mx"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}

126
config/app.php Normal file
View File

@ -0,0 +1,126 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application, which will be used when the
| framework needs to place the application's name in a notification or
| other UI elements where an application name needs to be displayed.
|
*/
'name' => env('APP_NAME', 'Laravel'),
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services the application utilizes. Set this in your ".env" file.
|
*/
'env' => env('APP_ENV', 'production'),
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| the application so that it's available within Artisan commands.
|
*/
'url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. The timezone
| is set to "UTC" by default as it is suitable for most use cases.
|
*/
'timezone' => env('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by Laravel's translation / localization methods. This option can be
| set to any locale for which you plan to have translation strings.
|
*/
'locale' => env('APP_LOCALE', 'en'),
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is utilized by Laravel's encryption services and should be set
| to a random, 32 character string to ensure that all encrypted values
| are secure. You should do this prior to deploying the application.
|
*/
'cipher' => 'AES-256-CBC',
'key' => env('APP_KEY'),
'previous_keys' => [
...array_filter(
explode(',', env('APP_PREVIOUS_KEYS', ''))
),
],
/*
|--------------------------------------------------------------------------
| Maintenance Mode Driver
|--------------------------------------------------------------------------
|
| These configuration options determine the driver used to determine and
| manage Laravel's "maintenance mode" status. The "cache" driver will
| allow maintenance mode to be controlled across multiple machines.
|
| Supported drivers: "file", "cache"
|
*/
'maintenance' => [
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
'store' => env('APP_MAINTENANCE_STORE', 'database'),
],
];

115
config/auth.php Normal file
View File

@ -0,0 +1,115 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option defines the default authentication "guard" and password
| reset "broker" for your application. You may change these values
| as required, but they're a perfect start for most applications.
|
*/
'defaults' => [
'guard' => env('AUTH_GUARD', 'web'),
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
],
/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| which utilizes session storage plus the Eloquent user provider.
|
| All authentication guards have a user provider, which defines how the
| users are actually retrieved out of your database or other storage
| system used by the application. Typically, Eloquent is utilized.
|
| Supported: "session"
|
*/
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
],
/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication guards have a user provider, which defines how the
| users are actually retrieved out of your database or other storage
| system used by the application. Typically, Eloquent is utilized.
|
| If you have multiple user tables or models you may configure multiple
| providers to represent the model / table. These providers may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => env('AUTH_MODEL', App\Models\User::class),
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| These configuration options specify the behavior of Laravel's password
| reset functionality, including the table utilized for token storage
| and the user provider that is invoked to actually retrieve users.
|
| The expiry time is the number of minutes that each reset token will be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
| The throttle setting is the number of seconds a user must wait before
| generating more password reset tokens. This prevents the user from
| quickly generating a very large amount of password reset tokens.
|
*/
'passwords' => [
'users' => [
'provider' => 'users',
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
'expire' => 60,
'throttle' => 60,
],
],
/*
|--------------------------------------------------------------------------
| Password Confirmation Timeout
|--------------------------------------------------------------------------
|
| Here you may define the amount of seconds before a password confirmation
| window expires and users are asked to re-enter their password via the
| confirmation screen. By default, the timeout lasts for three hours.
|
*/
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
];

108
config/cache.php Normal file
View File

@ -0,0 +1,108 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache store that will be used by the
| framework. This connection is utilized if another isn't explicitly
| specified when running a cache operation inside the application.
|
*/
'default' => env('CACHE_STORE', 'database'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
| Supported drivers: "array", "database", "file", "memcached",
| "redis", "dynamodb", "octane", "null"
|
*/
'stores' => [
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'driver' => 'database',
'connection' => env('DB_CACHE_CONNECTION'),
'table' => env('DB_CACHE_TABLE', 'cache'),
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'lock_path' => storage_path('framework/cache/data'),
],
'memcached' => [
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
],
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
'octane' => [
'driver' => 'octane',
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
| stores, there might be other applications using the same cache. For
| that reason, you may prefix every cache key to avoid collisions.
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
];

173
config/database.php Normal file
View File

@ -0,0 +1,173 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for database operations. This is
| the connection which will be utilized unless another connection
| is explicitly specified when you execute a query / statement.
|
*/
'default' => env('DB_CONNECTION', 'sqlite'),
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Below are all of the database connections defined for your application.
| An example configuration is provided for each database system which
| is supported by Laravel. You're free to add / remove connections.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'url' => env('DB_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
'busy_timeout' => null,
'journal_mode' => null,
'synchronous' => null,
],
'mysql' => [
'driver' => 'mysql',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => env('DB_CHARSET', 'utf8mb4'),
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'mariadb' => [
'driver' => 'mariadb',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => env('DB_CHARSET', 'utf8mb4'),
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'pgsql' => [
'driver' => 'pgsql',
'url' => env('DB_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'charset' => env('DB_CHARSET', 'utf8'),
'prefix' => '',
'prefix_indexes' => true,
'search_path' => 'public',
'sslmode' => 'prefer',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'url' => env('DB_URL'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'laravel'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'charset' => env('DB_CHARSET', 'utf8'),
'prefix' => '',
'prefix_indexes' => true,
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk haven't actually been run on the database.
|
*/
'migrations' => [
'table' => 'migrations',
'update_date_on_publish' => true,
],
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer body of commands than a typical key-value system
| such as Memcached. You may define your connection settings here.
|
*/
'redis' => [
'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
],
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
],
'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
],
],
];

80
config/filesystems.php Normal file
View File

@ -0,0 +1,80 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The "local" disk, as well as a variety of cloud
| based disks are available to your application for file storage.
|
*/
'default' => env('FILESYSTEM_DISK', 'local'),
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
| Below you may configure as many filesystem disks as necessary, and you
| may even configure multiple disks for the same driver. Examples for
| most supported storage drivers are configured here for reference.
|
| Supported drivers: "local", "ftp", "sftp", "s3"
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app/private'),
'serve' => true,
'throw' => false,
'report' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
'report' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
'report' => false,
],
],
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('storage') => storage_path('app/public'),
],
];

159
config/fortify.php Normal file
View File

@ -0,0 +1,159 @@
<?php
use Laravel\Fortify\Features;
return [
/*
|--------------------------------------------------------------------------
| Fortify Guard
|--------------------------------------------------------------------------
|
| Here you may specify which authentication guard Fortify will use while
| authenticating users. This value should correspond with one of your
| guards that is already present in your "auth" configuration file.
|
*/
'guard' => 'web',
/*
|--------------------------------------------------------------------------
| Fortify Password Broker
|--------------------------------------------------------------------------
|
| Here you may specify which password broker Fortify can use when a user
| is resetting their password. This configured value should match one
| of your password brokers setup in your "auth" configuration file.
|
*/
'passwords' => 'users',
/*
|--------------------------------------------------------------------------
| Username / Email
|--------------------------------------------------------------------------
|
| This value defines which model attribute should be considered as your
| application's "username" field. Typically, this might be the email
| address of the users but you are free to change this value here.
|
| Out of the box, Fortify expects forgot password and reset password
| requests to have a field named 'email'. If the application uses
| another name for the field you may define it below as needed.
|
*/
'username' => 'email',
'email' => 'email',
/*
|--------------------------------------------------------------------------
| Lowercase Usernames
|--------------------------------------------------------------------------
|
| This value defines whether usernames should be lowercased before saving
| them in the database, as some database system string fields are case
| sensitive. You may disable this for your application if necessary.
|
*/
'lowercase_usernames' => true,
/*
|--------------------------------------------------------------------------
| Home Path
|--------------------------------------------------------------------------
|
| Here you may configure the path where users will get redirected during
| authentication or password reset when the operations are successful
| and the user is authenticated. You are free to change this value.
|
*/
'home' => '/admin',
/*
|--------------------------------------------------------------------------
| Fortify Routes Prefix / Subdomain
|--------------------------------------------------------------------------
|
| Here you may specify which prefix Fortify will assign to all the routes
| that it registers with the application. If necessary, you may change
| subdomain under which all of the Fortify routes will be available.
|
*/
'prefix' => '',
'domain' => null,
/*
|--------------------------------------------------------------------------
| Fortify Routes Middleware
|--------------------------------------------------------------------------
|
| Here you may specify which middleware Fortify will assign to the routes
| that it registers with the application. If necessary, you may change
| these middleware but typically this provided default is preferred.
|
*/
'middleware' => ['web'],
/*
|--------------------------------------------------------------------------
| Rate Limiting
|--------------------------------------------------------------------------
|
| By default, Fortify will throttle logins to five requests per minute for
| every email and IP address combination. However, if you would like to
| specify a custom rate limiter to call then you may specify it here.
|
*/
'limiters' => [
'login' => 'login',
'two-factor' => 'two-factor',
],
/*
|--------------------------------------------------------------------------
| Register View Routes
|--------------------------------------------------------------------------
|
| Here you may specify if the routes returning views should be disabled as
| you may not need them when building your own application. This may be
| especially true if you're writing a custom single-page application.
|
*/
'views' => true,
/*
|--------------------------------------------------------------------------
| Features
|--------------------------------------------------------------------------
|
| Some of the Fortify features are optional. You may disable the features
| by removing them from this array. You're free to only remove some of
| these features or you can even remove all of these if you need to.
|
*/
'features' => [
Features::registration(),
Features::resetPasswords(),
Features::emailVerification(),
Features::updateProfileInformation(),
Features::updatePasswords(),
Features::twoFactorAuthentication([
'confirm' => true,
'confirmPassword' => true,
'window' => 1,
]),
],
];

42
config/image.php Normal file
View File

@ -0,0 +1,42 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Image Driver
|--------------------------------------------------------------------------
|
| Intervention Image supports “GD Library” and “Imagick” to process images
| internally. Depending on your PHP setup, you can choose one of them.
|
| Included options:
| - \Intervention\Image\Drivers\Gd\Driver::class
| - \Intervention\Image\Drivers\Imagick\Driver::class
|
*/
'driver' => \Intervention\Image\Drivers\Imagick\Driver::class,
/*
|--------------------------------------------------------------------------
| Configuration Options
|--------------------------------------------------------------------------
|
| These options control the behavior of Intervention Image.
|
| - "autoOrientation" controls whether an imported image should be
| automatically rotated according to any existing Exif data.
|
| - "decodeAnimation" decides whether a possibly animated image is
| decoded as such or whether the animation is discarded.
|
| - "blendingColor" Defines the default blending color.
*/
'options' => [
'autoOrientation' => true,
'decodeAnimation' => true,
'blendingColor' => 'ffffff',
]
];

132
config/logging.php Normal file
View File

@ -0,0 +1,132 @@
<?php
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Handler\SyslogUdpHandler;
use Monolog\Processor\PsrLogMessageProcessor;
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that is utilized to write
| messages to your logs. The value provided here should match one of
| the channels present in the list of "channels" configured below.
|
*/
'default' => env('LOG_CHANNEL', 'stack'),
/*
|--------------------------------------------------------------------------
| Deprecations Log Channel
|--------------------------------------------------------------------------
|
| This option controls the log channel that should be used to log warnings
| regarding deprecated PHP and library features. This allows you to get
| your application ready for upcoming major versions of dependencies.
|
*/
'deprecations' => [
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
],
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Laravel
| utilizes the Monolog PHP logging library, which includes a variety
| of powerful log handlers and formatters that you're free to use.
|
| Available drivers: "single", "daily", "slack", "syslog",
| "errorlog", "monolog", "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => explode(',', env('LOG_STACK', 'single')),
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'days' => env('LOG_DAILY_DAYS', 14),
'replace_placeholders' => true,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
'level' => env('LOG_LEVEL', 'critical'),
'replace_placeholders' => true,
],
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
],
'processors' => [PsrLogMessageProcessor::class],
],
'stderr' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'formatter' => env('LOG_STDERR_FORMATTER'),
'with' => [
'stream' => 'php://stderr',
],
'processors' => [PsrLogMessageProcessor::class],
],
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
'replace_placeholders' => true,
],
'errorlog' => [
'driver' => 'errorlog',
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'null' => [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],
];

116
config/mail.php Normal file
View File

@ -0,0 +1,116 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send all email
| messages unless another mailer is explicitly specified when sending
| the message. All additional mailers can be configured within the
| "mailers" array. Examples of each type of mailer are provided.
|
*/
'default' => env('MAIL_MAILER', 'log'),
/*
|--------------------------------------------------------------------------
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
| Laravel supports a variety of mail "transport" drivers that can be used
| when delivering an email. You may specify which one you're using for
| your mailers below. You may also add additional mailers if needed.
|
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "resend", "log", "array",
| "failover", "roundrobin"
|
*/
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'scheme' => env('MAIL_SCHEME'),
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
],
'ses' => [
'transport' => 'ses',
],
'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
// 'client' => [
// 'timeout' => 5,
// ],
],
'resend' => [
'transport' => 'resend',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
],
],
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all emails sent by your application to be sent from
| the same address. Here you may specify a name and address that is
| used globally for all emails that are sent by your application.
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
];

112
config/queue.php Normal file
View File

@ -0,0 +1,112 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Connection Name
|--------------------------------------------------------------------------
|
| Laravel's queue supports a variety of backends via a single, unified
| API, giving you convenient access to each backend using identical
| syntax for each. The default queue connection is defined below.
|
*/
'default' => env('QUEUE_CONNECTION', 'database'),
/*
|--------------------------------------------------------------------------
| Queue Connections
|--------------------------------------------------------------------------
|
| Here you may configure the connection options for every queue backend
| used by your application. An example configuration is provided for
| each backend supported by Laravel. You're also free to add more.
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
*/
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'connection' => env('DB_QUEUE_CONNECTION'),
'table' => env('DB_QUEUE_TABLE', 'jobs'),
'queue' => env('DB_QUEUE', 'default'),
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
'after_commit' => false,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
'queue' => env('BEANSTALKD_QUEUE', 'default'),
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
'block_for' => 0,
'after_commit' => false,
],
'sqs' => [
'driver' => 'sqs',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'default'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'after_commit' => false,
],
'redis' => [
'driver' => 'redis',
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
'queue' => env('REDIS_QUEUE', 'default'),
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
'block_for' => null,
'after_commit' => false,
],
],
/*
|--------------------------------------------------------------------------
| Job Batching
|--------------------------------------------------------------------------
|
| The following options configure the database and table that store job
| batching information. These options can be updated to any database
| connection and table which has been defined by your application.
|
*/
'batching' => [
'database' => env('DB_CONNECTION', 'sqlite'),
'table' => 'job_batches',
],
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control how and where failed jobs are stored. Laravel ships with
| support for storing failed jobs in a simple file or in a database.
|
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
*/
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'sqlite'),
'table' => 'failed_jobs',
],
];

38
config/services.php Normal file
View File

@ -0,0 +1,38 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'resend' => [
'key' => env('RESEND_KEY'),
],
'slack' => [
'notifications' => [
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
],
],
];

217
config/session.php Normal file
View File

@ -0,0 +1,217 @@
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option determines the default session driver that is utilized for
| incoming requests. Laravel supports a variety of storage options to
| persist session data. Database storage is a great default choice.
|
| Supported: "file", "cookie", "database", "apc",
| "memcached", "redis", "dynamodb", "array"
|
*/
'driver' => env('SESSION_DRIVER', 'database'),
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to expire immediately when the browser is closed then you may
| indicate that via the expire_on_close configuration option.
|
*/
'lifetime' => (int) env('SESSION_LIFETIME', 120),
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
/*
|--------------------------------------------------------------------------
| Session Encryption
|--------------------------------------------------------------------------
|
| This option allows you to easily specify that all of your session data
| should be encrypted before it's stored. All encryption is performed
| automatically by Laravel and you may use the session like normal.
|
*/
'encrypt' => env('SESSION_ENCRYPT', false),
/*
|--------------------------------------------------------------------------
| Session File Location
|--------------------------------------------------------------------------
|
| When utilizing the "file" session driver, the session files are placed
| on disk. The default storage location is defined here; however, you
| are free to provide another location where they should be stored.
|
*/
'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------
| Session Database Connection
|--------------------------------------------------------------------------
|
| When using the "database" or "redis" session drivers, you may specify a
| connection that should be used to manage these sessions. This should
| correspond to a connection in your database configuration options.
|
*/
'connection' => env('SESSION_CONNECTION'),
/*
|--------------------------------------------------------------------------
| Session Database Table
|--------------------------------------------------------------------------
|
| When using the "database" session driver, you may specify the table to
| be used to store sessions. Of course, a sensible default is defined
| for you; however, you're welcome to change this to another table.
|
*/
'table' => env('SESSION_TABLE', 'sessions'),
/*
|--------------------------------------------------------------------------
| Session Cache Store
|--------------------------------------------------------------------------
|
| When using one of the framework's cache driven session backends, you may
| define the cache store which should be used to store the session data
| between requests. This must match one of your defined cache stores.
|
| Affects: "apc", "dynamodb", "memcached", "redis"
|
*/
'store' => env('SESSION_STORE'),
/*
|--------------------------------------------------------------------------
| Session Sweeping Lottery
|--------------------------------------------------------------------------
|
| Some session drivers must manually sweep their storage location to get
| rid of old sessions from storage. Here are the chances that it will
| happen on a given request. By default, the odds are 2 out of 100.
|
*/
'lottery' => [2, 100],
/*
|--------------------------------------------------------------------------
| Session Cookie Name
|--------------------------------------------------------------------------
|
| Here you may change the name of the session cookie that is created by
| the framework. Typically, you should not need to change this value
| since doing so does not grant a meaningful security improvement.
|
*/
'cookie' => env(
'SESSION_COOKIE',
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
),
/*
|--------------------------------------------------------------------------
| Session Cookie Path
|--------------------------------------------------------------------------
|
| The session cookie path determines the path for which the cookie will
| be regarded as available. Typically, this will be the root path of
| your application, but you're free to change this when necessary.
|
*/
'path' => env('SESSION_PATH', '/'),
/*
|--------------------------------------------------------------------------
| Session Cookie Domain
|--------------------------------------------------------------------------
|
| This value determines the domain and subdomains the session cookie is
| available to. By default, the cookie will be available to the root
| domain and all subdomains. Typically, this shouldn't be changed.
|
*/
'domain' => env('SESSION_DOMAIN'),
/*
|--------------------------------------------------------------------------
| HTTPS Only Cookies
|--------------------------------------------------------------------------
|
| By setting this option to true, session cookies will only be sent back
| to the server if the browser has a HTTPS connection. This will keep
| the cookie from being sent to you when it can't be done securely.
|
*/
'secure' => env('SESSION_SECURE_COOKIE'),
/*
|--------------------------------------------------------------------------
| HTTP Access Only
|--------------------------------------------------------------------------
|
| Setting this value to true will prevent JavaScript from accessing the
| value of the cookie and the cookie will only be accessible through
| the HTTP protocol. It's unlikely you should disable this option.
|
*/
'http_only' => env('SESSION_HTTP_ONLY', true),
/*
|--------------------------------------------------------------------------
| Same-Site Cookies
|--------------------------------------------------------------------------
|
| This option determines how your cookies behave when cross-site requests
| take place, and can be used to mitigate CSRF attacks. By default, we
| will set this value to "lax" to permit secure cross-site requests.
|
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
| Supported: "lax", "strict", "none", null
|
*/
'same_site' => env('SESSION_SAME_SITE', 'lax'),
/*
|--------------------------------------------------------------------------
| Partitioned Cookies
|--------------------------------------------------------------------------
|
| Setting this value to true will tie the cookie to the top-level site for
| a cross-site context. Partitioned cookies are accepted by the browser
| when flagged "secure" and the Same-Site attribute is set to "none".
|
*/
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
];

203
config/vuexy_menu.php Normal file
View File

@ -0,0 +1,203 @@
<?php
return [
'Inicio' => [
'breadcrumbs' => false,
'icon' => 'menu-icon tf-icons ti ti-home',
'submenu' => [
'Inicio' => [
'icon' => 'menu-icon tf-icons ti ti-home',
'route' => 'admin.core.home.index',
],
'Sitio web' => [
'icon' => 'menu-icon tf-icons ti ti-world-www',
'url' => env('APP_URL'),
],
'Ajustes' => [
'icon' => 'menu-icon tf-icons ti ti-settings-cog',
'submenu' => [
'Aplicación' => [
'submenu' => [
'Ajustes generales' => [
'route' => 'admin.core.general-settings.index',
'can' => 'admin.core.general-settings.allow',
],
'Ajustes de caché' => [
'route' => 'admin.core.cache-manager.index',
'can' => 'admin.core.cache-manager.view',
],
'Servidor de correo SMTP' => [
'route' => 'admin.core.smtp-settings.index',
'can' => 'admin.core.smtp-settings.allow',
],
],
],
]
],
'Sistema' => [
'icon' => 'menu-icon tf-icons ti ti-user-cog',
'submenu' => [
'Usuarios' => [
'route' => 'admin.core.users.index',
'can' => 'admin.core.users.view',
],
'Roles' => [
'route' => 'admin.core.roles.index',
'can' => 'admin.core.roles.view',
],
'Permisos' => [
'route' => 'admin.core.permissions.index',
'can' => 'admin.core.permissions.view',
]
]
],
'Configuración de cuenta' => [
'icon' => 'menu-icon tf-icons ti ti-user-cog',
'route' => 'admin.core.user-profile.index',
],
'Acerca de' => [
'icon' => 'menu-icon tf-icons ti ti-cat',
'route' => 'admin.core.about.index',
],
],
],
'Herramientas avanzadas' => [
'icon' => 'menu-icon tf-icons ti ti-device-ipad-cog',
'submenu' => [
'Asistente AI' => [
'icon' => 'menu-icon tf-icons ti ti-brain',
'submenu' => [
'Panel de IA' => [
'route' => 'admin.ai.dashboard.index',
'can' => 'admin.ai.dashboard.view',
],
'Generación de contenidos' => [
'route' => 'admin.ai.content.index',
'can' => 'admin.ai.content.create',
],
'Análisis de datos' => [
'route' => 'admin.ai.analytics.index',
'can' => 'admin.ai.analytics.view',
],
],
],
'Chatbot' => [
'icon' => 'menu-icon tf-icons ti ti-message-chatbot',
'submenu' => [
'Configuración' => [
'route' => 'admin.chatbot.config.index',
'can' => 'admin.chatbot.config.view',
],
'Flujos de conversación' => [
'route' => 'admin.chatbot.flows.index',
'can' => 'admin.chatbot.flows.manage',
],
'Historial de interacciones' => [
'route' => 'admin.chatbot.history.index',
'can' => 'admin.chatbot.history.view',
],
],
],
],
],
'Sitio web' => [
'icon' => 'menu-icon tf-icons ti ti-tools',
'submenu' => [
'Ajustes generales' => [
'icon' => 'menu-icon tf-icons ti ti-tools',
'route' => 'admin.website.general-settings.index',
'can' => 'admin.website.general-settings.allow',
],
'Avisos legales' => [
'icon' => 'menu-icon tf-icons ti ti-writing-sign',
'route' => 'admin.website.legal.index',
'can' => 'admin.website.legal.view',
],
'Preguntas frecuentes' => [
'icon' => 'menu-icon tf-icons ti ti-bubble-text',
'route' => 'admin.website.faq.index',
'can' => 'admin.website.faq.view',
],
]
],
'Blog' => [
'icon' => 'menu-icon tf-icons ti ti-news',
'submenu' => [
'Categorias' => [
'icon' => 'menu-icon tf-icons ti ti-category',
'route' => 'admin.blog.categories.index',
'can' => 'admin.blog.categories.view',
],
'Etiquetas' => [
'icon' => 'menu-icon tf-icons ti ti-tags',
'route' => 'admin.blog.tags.index',
'can' => 'admin.blog.tags.view',
],
'Articulos' => [
'icon' => 'menu-icon tf-icons ti ti-news',
'route' => 'admin.blog.articles.index',
'can' => 'admin.blog.articles.view',
],
'Comentarios' => [
'icon' => 'menu-icon tf-icons ti ti-message',
'route' => 'admin.blog.comments.index',
'can' => 'admin.blog.comments.view',
],
]
],
'Contratos' => [
'icon' => 'menu-icon tf-icons ti ti-writing-sign',
'submenu' => [
'Mis contratos' => [
'icon' => 'menu-icon tf-icons ti ti-file-description',
'route' => 'admin.contracts.index',
'can' => 'admin.contracts.view',
],
'Firmar contrato' => [
'icon' => 'menu-icon tf-icons ti ti-signature',
'route' => 'admin.contracts.sign',
'can' => 'admin.contracts.sign',
],
'Contratos automatizados' => [
'icon' => 'menu-icon tf-icons ti ti-robot',
'route' => 'admin.contracts.automated',
'can' => 'admin.contracts.automated.view',
],
'Historial de contratos' => [
'icon' => 'menu-icon tf-icons ti ti-archive',
'route' => 'admin.contracts.history',
'can' => 'admin.contracts.history.view',
],
]
],
'Atención al cliente' => [
'icon' => 'menu-icon tf-icons ti ti-messages',
'submenu' => [
'Tablero' => [
'icon' => 'menu-icon tf-icons ti ti-chart-infographic',
'route' => 'admin.sales.dashboard.index',
'can' => 'admin.ticketing.dashboard.view',
],
'Mis tickets' => [
'icon' => 'menu-icon tf-icons ti ti-ticket',
'route' => 'admin.ticketing.tickets.index',
'can' => 'admin.ticketing.tickets.view',
],
'Crear ticket' => [
'icon' => 'menu-icon tf-icons ti ti-square-plus',
'route' => 'admin.ticketing.tickets.create',
'can' => 'admin.ticketing.tickets.create',
],
'Categorías de tickets' => [
'icon' => 'menu-icon tf-icons ti ti-category',
'route' => 'admin.ticketing.categories.index',
'can' => 'admin.ticketing.categories.view',
],
'Estadísticas de atención' => [
'icon' => 'menu-icon tf-icons ti ti-chart-bar',
'route' => 'admin.ticketing.analytics.index',
'can' => 'admin.ticketing.analytics.view',
],
]
],
];

1
database/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.sqlite*

View File

@ -0,0 +1,149 @@
{
"roles": {
"SuperAdmin" : {
"style": "dark",
"permissions" : [
"admin.core.general-settings.allow",
"admin.core.cache-manager.view",
"admin.core.smtp-settings.allow",
"admin.core.users.view",
"admin.core.roles.view",
"admin.core.permissions.view",
"admin.core.import-sat-catalogs.allow",
"admin.ai.dashboard.view",
"admin.ai.content.create",
"admin.ai.analytics.view",
"admin.chatbot.config.view",
"admin.chatbot.flows.manage",
"admin.chatbot.history.view",
"admin.website.general-settings.allow",
"admin.website.legal.view",
"admin.website.faq.view",
"admin.blog.categories.view",
"admin.blog.tags.view",
"admin.blog.articles.view",
"admin.blog.comments.view",
"admin.contacts.contacts.view",
"admin.contacts.employees.view",
"admin.contacts.employees.create",
"admin.contacts.customers.view",
"admin.contacts.suppliers.view",
"admin.contracts.view",
"admin.contracts.sign",
"admin.contracts.automated.view",
"admin.contracts.history.view",
"admin.ticketing.dashboard.view",
"admin.ticketing.tickets.view",
"admin.ticketing.tickets.create",
"admin.ticketing.categories.view",
"admin.ticketing.analytics.view"
]
},
"Admin" : {
"style": "primary",
"permissions" : [
"admin.core.general-settings.allow",
"admin.core.cache-manager.view",
"admin.core.smtp-settings.allow",
"admin.website.general-settings.allow",
"admin.website.legal.view",
"admin.core.users.view",
"admin.core.roles.view",
"admin.core.permissions.view",
"admin.core.import-sat-catalogs.allow",
"admin.contacts.contacts.view",
"admin.contacts.contacts.create",
"admin.contacts.employees.view",
"admin.contacts.employees.create",
"admin.contacts.customers.view",
"admin.contacts.customers.create",
"admin.contacts.suppliers.view",
"admin.contacts.suppliers.create"
]
},
"Administrador Web" : {
"style": "primary",
"permissions" : []
},
"Editor" : {
"style": "primary",
"permissions" : []
},
"Auditor" : {
"style": "dark",
"permissions" : [
"admin.core.cache-manager.view",
"admin.core.users.view",
"admin.core.roles.view",
"admin.core.permissions.view",
"admin.ai.dashboard.view",
"admin.ai.analytics.view",
"admin.chatbot.config.view",
"admin.chatbot.history.view",
"admin.iot.devices.view",
"admin.iot.monitoring.view",
"admin.website.legal.view",
"admin.website.faq.view",
"admin.blog.categories.view",
"admin.blog.tags.view",
"admin.blog.articles.view",
"admin.blog.comments.view",
"admin.contacts.contacts.view",
"admin.contacts.employees.view",
"admin.contacts.customers.view",
"admin.contacts.suppliers.view",
"admin.contracts.view",
"admin.contracts.automated.view",
"admin.contracts.history.view",
"admin.ticketing.dashboard.view",
"admin.ticketing.tickets.view",
"admin.ticketing.categories.view",
"admin.ticketing.analytics.view"
]
}
},
"permissions": [
"admin.core.general-settings.allow",
"admin.core.cache-manager.view",
"admin.core.smtp-settings.allow",
"admin.core.users.view",
"admin.core.roles.view",
"admin.core.permissions.view",
"admin.core.import-sat-catalogs.allow",
"admin.ai.dashboard.view",
"admin.ai.content.create",
"admin.ai.analytics.view",
"admin.chatbot.config.view",
"admin.chatbot.flows.manage",
"admin.chatbot.history.view",
"admin.iot.devices.view",
"admin.iot.sensors.manage",
"admin.iot.monitoring.view",
"admin.website.general-settings.allow",
"admin.website.legal.view",
"admin.website.faq.view",
"admin.blog.categories.view",
"admin.blog.tags.view",
"admin.blog.articles.view",
"admin.blog.comments.view",
"admin.contacts.contacts.view",
"admin.contacts.contacts.create",
"admin.contacts.employees.view",
"admin.contacts.employees.create",
"admin.contacts.customers.view",
"admin.contacts.customers.create",
"admin.contacts.suppliers.view",
"admin.contacts.suppliers.create",
"admin.contracts.view",
"admin.contracts.sign",
"admin.contracts.automated.view",
"admin.contracts.history.view",
"admin.ticketing.dashboard.view",
"admin.ticketing.tickets.view",
"admin.ticketing.tickets.create",
"admin.ticketing.categories.view",
"admin.ticketing.analytics.view"
]
}

3
database/data/users.csv Normal file
View File

@ -0,0 +1,3 @@
name,email,role,password
Administrador Web,webadmin@vuexyadmin.test,Administrador Web,LAdmin123
Auditor,auditor@vuexyadmin.test,Auditor,LAdmin123
1 name email role password
2 Administrador Web webadmin@vuexyadmin.test Administrador Web LAdmin123
3 Auditor auditor@vuexyadmin.test Auditor LAdmin123

View File

@ -0,0 +1,44 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
*/
class UserFactory extends Factory
{
/**
* The current password being used by the factory.
*/
protected static ?string $password;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => static::$password ??= Hash::make('password'),
'remember_token' => Str::random(10),
];
}
/**
* Indicate that the model's email address should be unverified.
*/
public function unverified(): static
{
return $this->state(fn (array $attributes) => [
'email_verified_at' => null,
]);
}
}

View File

@ -0,0 +1,49 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
}
};

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('cache', function (Blueprint $table) {
$table->string('key')->primary();
$table->mediumText('value');
$table->integer('expiration');
});
Schema::create('cache_locks', function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cache');
Schema::dropIfExists('cache_locks');
}
};

View File

@ -0,0 +1,57 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('jobs', function (Blueprint $table) {
$table->id();
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
Schema::create('job_batches', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');
$table->integer('pending_jobs');
$table->integer('failed_jobs');
$table->longText('failed_job_ids');
$table->mediumText('options')->nullable();
$table->integer('cancelled_at')->nullable();
$table->integer('created_at');
$table->integer('finished_at')->nullable();
});
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('jobs');
Schema::dropIfExists('job_batches');
Schema::dropIfExists('failed_jobs');
}
};

View File

@ -0,0 +1,21 @@
<?php
namespace Database\Seeders;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
$this->call([
SettingSeeder::class,
PermissionSeeder::class,
UserSeeder::class,
]);
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Koneko\VuexyAdmin\Services\RBACService;
class PermissionSeeder extends Seeder
{
public function run()
{
RBACService::loadRolesAndPermissions();
}
}

View File

@ -0,0 +1,29 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Crypt;
use Koneko\VuexyAdmin\Models\Setting;
class SettingSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$settings_array = [
//
];
foreach ($settings_array as $key => $value) {
Setting::create([
'key' => $key,
'value' => $value,
]);
};
}
}

View File

@ -0,0 +1,97 @@
<?php
namespace Database\Seeders;
use Koneko\VuexyAdmin\Models\User;
use Koneko\VuexyAdmin\Services\AvatarImageService;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Storage;
use Illuminate\Database\Seeder;
class UserSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// Define el disco y la carpeta
$disk = 'public';
$directory = 'profile-photos';
// Verifica si la carpeta existe
if (Storage::disk($disk)->exists($directory))
Storage::disk($disk)->deleteDirectory($directory);
//
$avatarImageService = new AvatarImageService();
// Super admin
$user = User::create([
'name' => 'Koneko Admin',
'email' => 'sadmin@koneko.mx',
'email_verified_at' => now(),
'password' => bcrypt('LAdmin123'),
'status' => User::STATUS_ENABLED,
])->assignRole('SuperAdmin');
// Actualizamos la foto
$avatarImageService->updateProfilePhoto($user, new UploadedFile(
'public/vendor/vuexy-admin/img/logo/koneko-02.png',
'koneko-02.png'
));
// admin
$user = User::create([
'name' => 'Admin',
'email' => 'admin@koneko.mx',
'email_verified_at' => now(),
'password' => bcrypt('LAdmin123'),
'status' => User::STATUS_ENABLED,
])->assignRole('Admin');
$avatarImageService->updateProfilePhoto($user, new UploadedFile(
'public/vendor/vuexy-admin/img/logo/koneko-03.png',
'koneko-03.png'
));
// Auditor
$user = User::create([
'name' => 'Auditor',
'email' => 'auditor@koneko.mx',
'email_verified_at' => now(),
'password' => bcrypt('LAdmin123'),
'status' => User::STATUS_ENABLED,
])->assignRole('Auditor');
$avatarImageService->updateProfilePhoto($user, new UploadedFile(
'public/vendor/vuexy-admin/img/logo/koneko-03.png',
'koneko-03.png'
));
// Usuarios CSV
$csvFile = fopen(base_path("database/data/users.csv"), "r");
$firstline = true;
while (($data = fgetcsv($csvFile, 2000, ",")) !== FALSE) {
if (!$firstline) {
User::create([
'name' => $data['0'],
'email' => $data['1'],
'email_verified_at' => now(),
'password' => bcrypt($data['3']),
'status' => User::STATUS_ENABLED,
])->assignRole($data['2']);
}
$firstline = false;
}
fclose($csvFile);
}
}

View File

@ -0,0 +1,50 @@
1;"ACAPULCO, ACAPULCO DE JUAREZ, GUERRERO.";2022-01-01;;;
2;"AGUA PRIETA, AGUA PRIETA, SONORA.";2022-01-01;;;
5;"SUBTENIENTE LOPEZ, SUBTENIENTE LOPEZ, QUINTANA ROO.";2022-01-01;;;
6;"CIUDAD DEL CARMEN, CIUDAD DEL CARMEN, CAMPECHE.";2022-01-01;;;
7;"CIUDAD JUAREZ, CIUDAD JUAREZ, CHIHUAHUA.";2022-01-01;;;
8;"COATZACOALCOS, COATZACOALCOS, VERACRUZ.";2022-01-01;;;
11;"ENSENADA, ENSENADA, BAJA CALIFORNIA.";2022-01-01;;;
12;"GUAYMAS, GUAYMAS, SONORA.";2022-01-01;;;
14;"LA PAZ, LA PAZ, BAJA CALIFORNIA SUR.";2022-01-01;;;
16;"MANZANILLO, MANZANILLO, COLIMA.";2022-01-01;;;
17;"MATAMOROS, MATAMOROS, TAMAULIPAS.";2022-01-01;;;
18;"MAZATLAN, MAZATLAN, SINALOA.";2022-01-01;;;
19;"MEXICALI, MEXICALI, BAJA CALIFORNIA.";2022-01-01;;;
20;"MEXICO, DISTRITO FEDERAL.";2022-01-01;;;
22;"NACO, NACO, SONORA.";2022-01-01;;;
23;"NOGALES, NOGALES, SONORA.";2022-01-01;;;
24;"NUEVO LAREDO, NUEVO LAREDO, TAMAULIPAS.";2022-01-01;;;
25;"OJINAGA, OJINAGA, CHIHUAHUA.";2022-01-01;;;
26;"PUERTO PALOMAS, PUERTO PALOMAS, CHIHUAHUA.";2022-01-01;;;
27;"PIEDRAS NEGRAS, PIEDRAS NEGRAS, COAHUILA.";2022-01-01;;;
28;"PROGRESO, PROGRESO, YUCATAN.";2022-01-01;;;
30;"CIUDAD REYNOSA, CIUDAD REYNOSA, TAMAULIPAS.";2022-01-01;;;
31;"SALINA CRUZ, SALINA CRUZ, OAXACA.";2022-01-01;;;
33;"SAN LUIS RIO COLORADO, SAN LUIS RIO COLORADO, SONORA.";2022-01-01;;;
34;"CIUDAD MIGUEL ALEMAN, CIUDAD MIGUEL ALEMAN, TAMAULIPAS.";2022-01-01;;;
37;"CIUDAD HIDALGO, CIUDAD HIDALGO, CHIAPAS.";2022-01-01;;;
38;"TAMPICO, TAMPICO, TAMAULIPAS.";2022-01-01;;;
39;"TECATE, TECATE, BAJA CALIFORNIA.";2022-01-01;;;
40;"TIJUANA, TIJUANA, BAJA CALIFORNIA.";2022-01-01;;;
42;"TUXPAN, TUXPAN DE RODRIGUEZ CANO, VERACRUZ.";2022-01-01;;;
43;"VERACRUZ, VERACRUZ, VERACRUZ.";2022-01-01;;;
44;"CIUDAD ACUÑA, CIUDAD ACUÑA, COAHUILA.";2022-01-01;;;
46;"TORREON, TORREON, COAHUILA.";2022-01-01;;;
47;"AEROPUERTO INTERNACIONAL DE LA CIUDAD DE MEXICO,";2022-01-01;;;
48;"GUADALAJARA, TLACOMULCO DE ZUÑIGA, JALISCO.";2022-01-01;;;
50;"SONOYTA, SONOYTA, SONORA.";2022-01-01;;;
51;"LAZARO CARDENAS, LAZARO CARDENAS, MICHOACAN.";2022-01-01;;;
52;"MONTERREY, GENERAL MARIANO ESCOBEDO, NUEVO LEON.";2022-01-01;;;
53;"CANCUN, CANCUN, QUINTANA ROO.";2022-01-01;;;
64;"QUERÉTARO, EL MARQUÉS Y COLON, QUERÉTARO.";2022-01-01;;;
65;"TOLUCA, TOLUCA, ESTADO DE MEXICO.";2022-01-01;;;
67;"CHIHUAHUA, CHIHUAHUA, CHIHUAHUA.";2022-01-01;;;
73;"AGUASCALIENTES, AGUASCALIENTES, AGUASCALIENTES.";2022-01-01;;;
75;"PUEBLA, HEROICA PUEBLA DE ZARAGOZA, PUEBLA.";2022-01-01;;;
80;"COLOMBIA, COLOMBIA, NUEVO LEON.";2022-01-01;;;
81;"ALTAMIRA, ALTAMIRA, TAMAULIPAS.";2022-01-01;;;
82;"CIUDAD CAMARGO, CIUDAD CAMARGO, TAMAULIPAS.";2022-01-01;;;
83;"DOS BOCAS, PARAISO, TABASCO.";2022-01-01;;;
84;"GUANAJUATO, SILAO, GUANAJUATO.";2022-01-01;;;
85;"AEROPUERTO INTERNACIONAL FELIPE ÁNGELES, SANTA LUCÍA, ZUMPANGO, ESTADO DE MÉXICO.";2023-01-13;;;
1 1 ACAPULCO, ACAPULCO DE JUAREZ, GUERRERO. 2022-01-01
2 2 AGUA PRIETA, AGUA PRIETA, SONORA. 2022-01-01
3 5 SUBTENIENTE LOPEZ, SUBTENIENTE LOPEZ, QUINTANA ROO. 2022-01-01
4 6 CIUDAD DEL CARMEN, CIUDAD DEL CARMEN, CAMPECHE. 2022-01-01
5 7 CIUDAD JUAREZ, CIUDAD JUAREZ, CHIHUAHUA. 2022-01-01
6 8 COATZACOALCOS, COATZACOALCOS, VERACRUZ. 2022-01-01
7 11 ENSENADA, ENSENADA, BAJA CALIFORNIA. 2022-01-01
8 12 GUAYMAS, GUAYMAS, SONORA. 2022-01-01
9 14 LA PAZ, LA PAZ, BAJA CALIFORNIA SUR. 2022-01-01
10 16 MANZANILLO, MANZANILLO, COLIMA. 2022-01-01
11 17 MATAMOROS, MATAMOROS, TAMAULIPAS. 2022-01-01
12 18 MAZATLAN, MAZATLAN, SINALOA. 2022-01-01
13 19 MEXICALI, MEXICALI, BAJA CALIFORNIA. 2022-01-01
14 20 MEXICO, DISTRITO FEDERAL. 2022-01-01
15 22 NACO, NACO, SONORA. 2022-01-01
16 23 NOGALES, NOGALES, SONORA. 2022-01-01
17 24 NUEVO LAREDO, NUEVO LAREDO, TAMAULIPAS. 2022-01-01
18 25 OJINAGA, OJINAGA, CHIHUAHUA. 2022-01-01
19 26 PUERTO PALOMAS, PUERTO PALOMAS, CHIHUAHUA. 2022-01-01
20 27 PIEDRAS NEGRAS, PIEDRAS NEGRAS, COAHUILA. 2022-01-01
21 28 PROGRESO, PROGRESO, YUCATAN. 2022-01-01
22 30 CIUDAD REYNOSA, CIUDAD REYNOSA, TAMAULIPAS. 2022-01-01
23 31 SALINA CRUZ, SALINA CRUZ, OAXACA. 2022-01-01
24 33 SAN LUIS RIO COLORADO, SAN LUIS RIO COLORADO, SONORA. 2022-01-01
25 34 CIUDAD MIGUEL ALEMAN, CIUDAD MIGUEL ALEMAN, TAMAULIPAS. 2022-01-01
26 37 CIUDAD HIDALGO, CIUDAD HIDALGO, CHIAPAS. 2022-01-01
27 38 TAMPICO, TAMPICO, TAMAULIPAS. 2022-01-01
28 39 TECATE, TECATE, BAJA CALIFORNIA. 2022-01-01
29 40 TIJUANA, TIJUANA, BAJA CALIFORNIA. 2022-01-01
30 42 TUXPAN, TUXPAN DE RODRIGUEZ CANO, VERACRUZ. 2022-01-01
31 43 VERACRUZ, VERACRUZ, VERACRUZ. 2022-01-01
32 44 CIUDAD ACUÑA, CIUDAD ACUÑA, COAHUILA. 2022-01-01
33 46 TORREON, TORREON, COAHUILA. 2022-01-01
34 47 AEROPUERTO INTERNACIONAL DE LA CIUDAD DE MEXICO, 2022-01-01
35 48 GUADALAJARA, TLACOMULCO DE ZUÑIGA, JALISCO. 2022-01-01
36 50 SONOYTA, SONOYTA, SONORA. 2022-01-01
37 51 LAZARO CARDENAS, LAZARO CARDENAS, MICHOACAN. 2022-01-01
38 52 MONTERREY, GENERAL MARIANO ESCOBEDO, NUEVO LEON. 2022-01-01
39 53 CANCUN, CANCUN, QUINTANA ROO. 2022-01-01
40 64 QUERÉTARO, EL MARQUÉS Y COLON, QUERÉTARO. 2022-01-01
41 65 TOLUCA, TOLUCA, ESTADO DE MEXICO. 2022-01-01
42 67 CHIHUAHUA, CHIHUAHUA, CHIHUAHUA. 2022-01-01
43 73 AGUASCALIENTES, AGUASCALIENTES, AGUASCALIENTES. 2022-01-01
44 75 PUEBLA, HEROICA PUEBLA DE ZARAGOZA, PUEBLA. 2022-01-01
45 80 COLOMBIA, COLOMBIA, NUEVO LEON. 2022-01-01
46 81 ALTAMIRA, ALTAMIRA, TAMAULIPAS. 2022-01-01
47 82 CIUDAD CAMARGO, CIUDAD CAMARGO, TAMAULIPAS. 2022-01-01
48 83 DOS BOCAS, PARAISO, TABASCO. 2022-01-01
49 84 GUANAJUATO, SILAO, GUANAJUATO. 2022-01-01
50 85 AEROPUERTO INTERNACIONAL FELIPE ÁNGELES, SANTA LUCÍA, ZUMPANGO, ESTADO DE MÉXICO. 2023-01-13

View File

@ -0,0 +1,93 @@
002;BANAMEX;Banco Nacional de México, S.A., Institución de Banca Múltiple, Grupo Financiero Banamex;;1
006;BANCOMEXT;Banco Nacional de Comercio Exterior, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo;;1
009;BANOBRAS;Banco Nacional de Obras y Servicios Públicos, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo;;1
012;BBVA BANCOMER;BBVA Bancomer, S.A., Institución de Banca Múltiple, Grupo Financiero BBVA Bancomer;;1
014;SANTANDER;Banco Santander (México), S.A., Institución de Banca Múltiple, Grupo Financiero Santander;;1
019;BANJERCITO;Banco Nacional del Ejército, Fuerza Aérea y Armada, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo;;1
021;HSBC;HSBC México, S.A., institución De Banca Múltiple, Grupo Financiero HSBC;;1
030;BAJIO;Banco del Bajío, S.A., Institución de Banca Múltiple;;1
032;IXE;IXE Banco, S.A., Institución de Banca Múltiple, IXE Grupo Financiero;;1
036;INBURSA;Banco Inbursa, S.A., Institución de Banca Múltiple, Grupo Financiero Inbursa;;1
037;INTERACCIONES;Banco Interacciones, S.A., Institución de Banca Múltiple;;1
042;MIFEL;Banca Mifel, S.A., Institución de Banca Múltiple, Grupo Financiero Mifel;;1
044;SCOTIABANK;Scotiabank Inverlat, S.A.;;1
058;BANREGIO;Banco Regional de Monterrey, S.A., Institución de Banca Múltiple, Banregio Grupo Financiero;;1
059;INVEX;Banco Invex, S.A., Institución de Banca Múltiple, Invex Grupo Financiero;;1
060;BANSI;Bansi, S.A., Institución de Banca Múltiple;;1
062;AFIRME;Banca Afirme, S.A., Institución de Banca Múltiple;;1
072;BANORTE;Banco Mercantil del Norte, S.A., Institución de Banca Múltiple, Grupo Financiero Banorte;;1
102;THE ROYAL BANK;The Royal Bank of Scotland México, S.A., Institución de Banca Múltiple;;1
103;AMERICAN EXPRESS;American Express Bank (México), S.A., Institución de Banca Múltiple;;1
106;BAMSA;Bank of America México, S.A., Institución de Banca Múltiple, Grupo Financiero Bank of America;;1
108;TOKYO;Bank of Tokyo-Mitsubishi UFJ (México), S.A.;;1
110;JP MORGAN;Banco J.P. Morgan, S.A., Institución de Banca Múltiple, J.P. Morgan Grupo Financiero;;1
112;BMONEX;Banco Monex, S.A., Institución de Banca Múltiple;;1
113;VE POR MAS;Banco Ve Por Mas, S.A. Institución de Banca Múltiple;;1
116;ING;ING Bank (México), S.A., Institución de Banca Múltiple, ING Grupo Financiero;;1
124;DEUTSCHE;Deutsche Bank México, S.A., Institución de Banca Múltiple;;1
126;CREDIT SUISSE;Banco Credit Suisse (México), S.A. Institución de Banca Múltiple, Grupo Financiero Credit Suisse (México);;1
127;AZTECA;Banco Azteca, S.A. Institución de Banca Múltiple.;;1
128;AUTOFIN;Banco Autofin México, S.A. Institución de Banca Múltiple;;1
129;BARCLAYS;Barclays Bank México, S.A., Institución de Banca Múltiple, Grupo Financiero Barclays México;;1
130;COMPARTAMOS;Banco Compartamos, S.A., Institución de Banca Múltiple;;1
131;BANCO FAMSA;Banco Ahorro Famsa, S.A., Institución de Banca Múltiple;;1
132;BMULTIVA;Banco Multiva, S.A., Institución de Banca Múltiple, Multivalores Grupo Financiero;;1
133;ACTINVER;Banco Actinver, S.A. Institución de Banca Múltiple, Grupo Financiero Actinver;;1
134;WAL-MART;Banco Wal-Mart de México Adelante, S.A., Institución de Banca Múltiple;;1
135;NAFIN;Nacional Financiera, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo;;1
136;INTERBANCO;Inter Banco, S.A. Institución de Banca Múltiple;;1
137;BANCOPPEL;BanCoppel, S.A., Institución de Banca Múltiple;;1
138;ABC CAPITAL;ABC Capital, S.A., Institución de Banca Múltiple;;1
139;UBS BANK;UBS Bank México, S.A., Institución de Banca Múltiple, UBS Grupo Financiero;;1
140;CONSUBANCO;Consubanco, S.A. Institución de Banca Múltiple;;1
141;VOLKSWAGEN;Volkswagen Bank, S.A., Institución de Banca Múltiple;;1
143;CIBANCO;CIBanco, S.A.;;1
145;BBASE;Banco Base, S.A., Institución de Banca Múltiple;;1
166;BANSEFI;Banco del Ahorro Nacional y Servicios Financieros, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo;;1
168;HIPOTECARIA FEDERAL;Sociedad Hipotecaria Federal, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo;;1
600;MONEXCB;Monex Casa de Bolsa, S.A. de C.V. Monex Grupo Financiero;;1
601;GBM;GBM Grupo Bursátil Mexicano, S.A. de C.V. Casa de Bolsa;;1
602;MASARI;Masari Casa de Bolsa, S.A.;;1
605;VALUE;Value, S.A. de C.V. Casa de Bolsa;;1
606;ESTRUCTURADORES;Estructuradores del Mercado de Valores Casa de Bolsa, S.A. de C.V.;;1
607;TIBER;Casa de Cambio Tiber, S.A. de C.V.;;1
608;VECTOR;Vector Casa de Bolsa, S.A. de C.V.;;1
610;B&B;B y B, Casa de Cambio, S.A. de C.V.;;1
614;ACCIVAL;Acciones y Valores Banamex, S.A. de C.V., Casa de Bolsa;;1
615;MERRILL LYNCH;Merrill Lynch México, S.A. de C.V. Casa de Bolsa;;1
616;FINAMEX;Casa de Bolsa Finamex, S.A. de C.V.;;1
617;VALMEX;Valores Mexicanos Casa de Bolsa, S.A. de C.V.;;1
618;UNICA;Unica Casa de Cambio, S.A. de C.V.;;1
619;MAPFRE;MAPFRE Tepeyac, S.A.;;1
620;PROFUTURO;Profuturo G.N.P., S.A. de C.V., Afore;;1
621;CB ACTINVER;Actinver Casa de Bolsa, S.A. de C.V.;;1
622;OACTIN;OPERADORA ACTINVER, S.A. DE C.V.;;1
623;SKANDIA;Skandia Vida, S.A. de C.V.;;1
626;CBDEUTSCHE;Deutsche Securities, S.A. de C.V. CASA DE BOLSA;;1
627;ZURICH;Zurich Compañía de Seguros, S.A.;;1
628;ZURICHVI;Zurich Vida, Compañía de Seguros, S.A.;;1
629;SU CASITA;Hipotecaria Su Casita, S.A. de C.V. SOFOM ENR;;1
630;CB INTERCAM;Intercam Casa de Bolsa, S.A. de C.V.;;1
631;CI BOLSA;CI Casa de Bolsa, S.A. de C.V.;;1
632;BULLTICK CB;Bulltick Casa de Bolsa, S.A., de C.V.;;1
633;STERLING;Sterling Casa de Cambio, S.A. de C.V.;;1
634;FINCOMUN;Fincomún, Servicios Financieros Comunitarios, S.A. de C.V.;;1
636;HDI SEGUROS;HDI Seguros, S.A. de C.V.;;1
637;ORDER;Order Express Casa de Cambio, S.A. de C.V;;1
638;AKALA;Akala, S.A. de C.V., Sociedad Financiera Popular;;1
640;CB JPMORGAN;J.P. Morgan Casa de Bolsa, S.A. de C.V. J.P. Morgan Grupo Financiero;;1
642;REFORMA;Operadora de Recursos Reforma, S.A. de C.V., S.F.P.;;1
646;STP;Sistema de Transferencias y Pagos STP, S.A. de C.V.SOFOM ENR;;1
647;TELECOMM;Telecomunicaciones de México;;1
648;EVERCORE;Evercore Casa de Bolsa, S.A. de C.V.;;1
649;SKANDIA;Skandia Operadora de Fondos, S.A. de C.V.;;1
651;SEGMTY;Seguros Monterrey New York Life, S.A de C.V;;1
652;ASEA;Solución Asea, S.A. de C.V., Sociedad Financiera Popular;;1
653;KUSPIT;Kuspit Casa de Bolsa, S.A. de C.V.;;1
655;SOFIEXPRESS;J.P. SOFIEXPRESS, S.A. de C.V., S.F.P.;;1
656;UNAGRA;UNAGRA, S.A. de C.V., S.F.P.;;1
659;OPCIONES EMPRESARIALES DEL NOROESTE;OPCIONES EMPRESARIALES DEL NORESTE, S.A. DE C.V., S.F.P.;;1
901;CLS;Cls Bank International;;1
902;INDEVAL;SD. Indeval, S.A. de C.V.;;1
670;LIBERTAD;Libertad Servicios Financieros, S.A. De C.V.;;1
999;N/A;;;1
1 002 BANAMEX Banco Nacional de México, S.A., Institución de Banca Múltiple, Grupo Financiero Banamex 1
2 006 BANCOMEXT Banco Nacional de Comercio Exterior, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo 1
3 009 BANOBRAS Banco Nacional de Obras y Servicios Públicos, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo 1
4 012 BBVA BANCOMER BBVA Bancomer, S.A., Institución de Banca Múltiple, Grupo Financiero BBVA Bancomer 1
5 014 SANTANDER Banco Santander (México), S.A., Institución de Banca Múltiple, Grupo Financiero Santander 1
6 019 BANJERCITO Banco Nacional del Ejército, Fuerza Aérea y Armada, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo 1
7 021 HSBC HSBC México, S.A., institución De Banca Múltiple, Grupo Financiero HSBC 1
8 030 BAJIO Banco del Bajío, S.A., Institución de Banca Múltiple 1
9 032 IXE IXE Banco, S.A., Institución de Banca Múltiple, IXE Grupo Financiero 1
10 036 INBURSA Banco Inbursa, S.A., Institución de Banca Múltiple, Grupo Financiero Inbursa 1
11 037 INTERACCIONES Banco Interacciones, S.A., Institución de Banca Múltiple 1
12 042 MIFEL Banca Mifel, S.A., Institución de Banca Múltiple, Grupo Financiero Mifel 1
13 044 SCOTIABANK Scotiabank Inverlat, S.A. 1
14 058 BANREGIO Banco Regional de Monterrey, S.A., Institución de Banca Múltiple, Banregio Grupo Financiero 1
15 059 INVEX Banco Invex, S.A., Institución de Banca Múltiple, Invex Grupo Financiero 1
16 060 BANSI Bansi, S.A., Institución de Banca Múltiple 1
17 062 AFIRME Banca Afirme, S.A., Institución de Banca Múltiple 1
18 072 BANORTE Banco Mercantil del Norte, S.A., Institución de Banca Múltiple, Grupo Financiero Banorte 1
19 102 THE ROYAL BANK The Royal Bank of Scotland México, S.A., Institución de Banca Múltiple 1
20 103 AMERICAN EXPRESS American Express Bank (México), S.A., Institución de Banca Múltiple 1
21 106 BAMSA Bank of America México, S.A., Institución de Banca Múltiple, Grupo Financiero Bank of America 1
22 108 TOKYO Bank of Tokyo-Mitsubishi UFJ (México), S.A. 1
23 110 JP MORGAN Banco J.P. Morgan, S.A., Institución de Banca Múltiple, J.P. Morgan Grupo Financiero 1
24 112 BMONEX Banco Monex, S.A., Institución de Banca Múltiple 1
25 113 VE POR MAS Banco Ve Por Mas, S.A. Institución de Banca Múltiple 1
26 116 ING ING Bank (México), S.A., Institución de Banca Múltiple, ING Grupo Financiero 1
27 124 DEUTSCHE Deutsche Bank México, S.A., Institución de Banca Múltiple 1
28 126 CREDIT SUISSE Banco Credit Suisse (México), S.A. Institución de Banca Múltiple, Grupo Financiero Credit Suisse (México) 1
29 127 AZTECA Banco Azteca, S.A. Institución de Banca Múltiple. 1
30 128 AUTOFIN Banco Autofin México, S.A. Institución de Banca Múltiple 1
31 129 BARCLAYS Barclays Bank México, S.A., Institución de Banca Múltiple, Grupo Financiero Barclays México 1
32 130 COMPARTAMOS Banco Compartamos, S.A., Institución de Banca Múltiple 1
33 131 BANCO FAMSA Banco Ahorro Famsa, S.A., Institución de Banca Múltiple 1
34 132 BMULTIVA Banco Multiva, S.A., Institución de Banca Múltiple, Multivalores Grupo Financiero 1
35 133 ACTINVER Banco Actinver, S.A. Institución de Banca Múltiple, Grupo Financiero Actinver 1
36 134 WAL-MART Banco Wal-Mart de México Adelante, S.A., Institución de Banca Múltiple 1
37 135 NAFIN Nacional Financiera, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo 1
38 136 INTERBANCO Inter Banco, S.A. Institución de Banca Múltiple 1
39 137 BANCOPPEL BanCoppel, S.A., Institución de Banca Múltiple 1
40 138 ABC CAPITAL ABC Capital, S.A., Institución de Banca Múltiple 1
41 139 UBS BANK UBS Bank México, S.A., Institución de Banca Múltiple, UBS Grupo Financiero 1
42 140 CONSUBANCO Consubanco, S.A. Institución de Banca Múltiple 1
43 141 VOLKSWAGEN Volkswagen Bank, S.A., Institución de Banca Múltiple 1
44 143 CIBANCO CIBanco, S.A. 1
45 145 BBASE Banco Base, S.A., Institución de Banca Múltiple 1
46 166 BANSEFI Banco del Ahorro Nacional y Servicios Financieros, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo 1
47 168 HIPOTECARIA FEDERAL Sociedad Hipotecaria Federal, Sociedad Nacional de Crédito, Institución de Banca de Desarrollo 1
48 600 MONEXCB Monex Casa de Bolsa, S.A. de C.V. Monex Grupo Financiero 1
49 601 GBM GBM Grupo Bursátil Mexicano, S.A. de C.V. Casa de Bolsa 1
50 602 MASARI Masari Casa de Bolsa, S.A. 1
51 605 VALUE Value, S.A. de C.V. Casa de Bolsa 1
52 606 ESTRUCTURADORES Estructuradores del Mercado de Valores Casa de Bolsa, S.A. de C.V. 1
53 607 TIBER Casa de Cambio Tiber, S.A. de C.V. 1
54 608 VECTOR Vector Casa de Bolsa, S.A. de C.V. 1
55 610 B&B B y B, Casa de Cambio, S.A. de C.V. 1
56 614 ACCIVAL Acciones y Valores Banamex, S.A. de C.V., Casa de Bolsa 1
57 615 MERRILL LYNCH Merrill Lynch México, S.A. de C.V. Casa de Bolsa 1
58 616 FINAMEX Casa de Bolsa Finamex, S.A. de C.V. 1
59 617 VALMEX Valores Mexicanos Casa de Bolsa, S.A. de C.V. 1
60 618 UNICA Unica Casa de Cambio, S.A. de C.V. 1
61 619 MAPFRE MAPFRE Tepeyac, S.A. 1
62 620 PROFUTURO Profuturo G.N.P., S.A. de C.V., Afore 1
63 621 CB ACTINVER Actinver Casa de Bolsa, S.A. de C.V. 1
64 622 OACTIN OPERADORA ACTINVER, S.A. DE C.V. 1
65 623 SKANDIA Skandia Vida, S.A. de C.V. 1
66 626 CBDEUTSCHE Deutsche Securities, S.A. de C.V. CASA DE BOLSA 1
67 627 ZURICH Zurich Compañía de Seguros, S.A. 1
68 628 ZURICHVI Zurich Vida, Compañía de Seguros, S.A. 1
69 629 SU CASITA Hipotecaria Su Casita, S.A. de C.V. SOFOM ENR 1
70 630 CB INTERCAM Intercam Casa de Bolsa, S.A. de C.V. 1
71 631 CI BOLSA CI Casa de Bolsa, S.A. de C.V. 1
72 632 BULLTICK CB Bulltick Casa de Bolsa, S.A., de C.V. 1
73 633 STERLING Sterling Casa de Cambio, S.A. de C.V. 1
74 634 FINCOMUN Fincomún, Servicios Financieros Comunitarios, S.A. de C.V. 1
75 636 HDI SEGUROS HDI Seguros, S.A. de C.V. 1
76 637 ORDER Order Express Casa de Cambio, S.A. de C.V 1
77 638 AKALA Akala, S.A. de C.V., Sociedad Financiera Popular 1
78 640 CB JPMORGAN J.P. Morgan Casa de Bolsa, S.A. de C.V. J.P. Morgan Grupo Financiero 1
79 642 REFORMA Operadora de Recursos Reforma, S.A. de C.V., S.F.P. 1
80 646 STP Sistema de Transferencias y Pagos STP, S.A. de C.V.SOFOM ENR 1
81 647 TELECOMM Telecomunicaciones de México 1
82 648 EVERCORE Evercore Casa de Bolsa, S.A. de C.V. 1
83 649 SKANDIA Skandia Operadora de Fondos, S.A. de C.V. 1
84 651 SEGMTY Seguros Monterrey New York Life, S.A de C.V 1
85 652 ASEA Solución Asea, S.A. de C.V., Sociedad Financiera Popular 1
86 653 KUSPIT Kuspit Casa de Bolsa, S.A. de C.V. 1
87 655 SOFIEXPRESS J.P. SOFIEXPRESS, S.A. de C.V., S.F.P. 1
88 656 UNAGRA UNAGRA, S.A. de C.V., S.F.P. 1
89 659 OPCIONES EMPRESARIALES DEL NOROESTE OPCIONES EMPRESARIALES DEL NORESTE, S.A. DE C.V., S.F.P. 1
90 901 CLS Cls Bank International 1
91 902 INDEVAL SD. Indeval, S.A. de C.V. 1
92 670 LIBERTAD Libertad Servicios Financieros, S.A. De C.V. 1
93 999 N/A 1

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,107 @@
001;Seguridad social
002;ISR
003;Aportaciones a retiro, cesantía en edad avanzada y vejez.
004;Otros
005;Aportaciones a Fondo de vivienda
006;Descuento por incapacidad
007;Pensión alimenticia
008;Renta
009;Préstamos provenientes del Fondo Nacional de la Vivienda para los Trabajadores
010;Pago por crédito de vivienda
011;Pago de abonos INFONACOT
012;Anticipo de salarios
013;Pagos hechos con exceso al trabajador
014;Errores
015;Pérdidas
016;Averías
017;Adquisición de artículos producidos por la empresa o establecimiento
018;Cuotas para la constitución y fomento de sociedades cooperativas y de cajas de ahorro
019;Cuotas sindicales
020;Ausencia (Ausentismo)
021;Cuotas obrero patronales
022;Impuestos Locales
023;Aportaciones voluntarias
024;Ajuste en Gratificación Anual (Aguinaldo) Exento
025;Ajuste en Gratificación Anual (Aguinaldo) Gravado
026;Ajuste en Participación de los Trabajadores en las Utilidades PTU Exento
027;Ajuste en Participación de los Trabajadores en las Utilidades PTU Gravado
028;Ajuste en Reembolso de Gastos Médicos Dentales y Hospitalarios Exento
029;Ajuste en Fondo de ahorro Exento
030;Ajuste en Caja de ahorro Exento
031;Ajuste en Contribuciones a Cargo del Trabajador Pagadas por el Patrón Exento
032;Ajuste en Premios por puntualidad Gravado
033;Ajuste en Prima de Seguro de vida Exento
034;Ajuste en Seguro de Gastos Médicos Mayores Exento
035;Ajuste en Cuotas Sindicales Pagadas por el Patrón Exento
036;Ajuste en Subsidios por incapacidad Exento
037;Ajuste en Becas para trabajadores y/o hijos Exento
038;Ajuste en Horas extra Exento
039;Ajuste en Horas extra Gravado
040;Ajuste en Prima dominical Exento
041;Ajuste en Prima dominical Gravado
042;Ajuste en Prima vacacional Exento
043;Ajuste en Prima vacacional Gravado
044;Ajuste en Prima por antigüedad Exento
045;Ajuste en Prima por antigüedad Gravado
046;Ajuste en Pagos por separación Exento
047;Ajuste en Pagos por separación Gravado
048;Ajuste en Seguro de retiro Exento
049;Ajuste en Indemnizaciones Exento
050;Ajuste en Indemnizaciones Gravado
051;Ajuste en Reembolso por funeral Exento
052;Ajuste en Cuotas de seguridad social pagadas por el patrón Exento
053;Ajuste en Comisiones Gravado
054;Ajuste en Vales de despensa Exento
055;Ajuste en Vales de restaurante Exento
056;Ajuste en Vales de gasolina Exento
057;Ajuste en Vales de ropa Exento
058;Ajuste en Ayuda para renta Exento
059;Ajuste en Ayuda para artículos escolares Exento
060;Ajuste en Ayuda para anteojos Exento
061;Ajuste en Ayuda para transporte Exento
062;Ajuste en Ayuda para gastos de funeral Exento
063;Ajuste en Otros ingresos por salarios Exento
064;Ajuste en Otros ingresos por salarios Gravado
065;Ajuste en Jubilaciones, pensiones o haberes de retiro en una sola exhibición Exento
066;Ajuste en Jubilaciones, pensiones o haberes de retiro en una sola exhibición Gravado
067;Ajuste en Pagos por separación Acumulable
068;Ajuste en Pagos por separación No acumulable
069;Ajuste en Jubilaciones, pensiones o haberes de retiro en parcialidades Exento
070;Ajuste en Jubilaciones, pensiones o haberes de retiro en parcialidades Gravado
071;Ajuste en Subsidio para el empleo (efectivamente entregado al trabajador)
072;Ajuste en Ingresos en acciones o títulos valor que representan bienes Exento
073;Ajuste en Ingresos en acciones o títulos valor que representan bienes Gravado
074;Ajuste en Alimentación Exento
075;Ajuste en Alimentación Gravado
076;Ajuste en Habitación Exento
077;Ajuste en Habitación Gravado
078;Ajuste en Premios por asistencia
079;Ajuste en Pagos distintos a los listados y que no deben considerarse como ingreso por sueldos, salarios o ingresos asimilados.
080;Ajuste en Viáticos gravados
081;Ajuste en Viáticos (entregados al trabajador)
082;Ajuste en Fondo de ahorro Gravado
083;Ajuste en Caja de ahorro Gravado
084;Ajuste en Prima de Seguro de vida Gravado
085;Ajuste en Seguro de Gastos Médicos Mayores Gravado
086;Ajuste en Subsidios por incapacidad Gravado
087;Ajuste en Becas para trabajadores y/o hijos Gravado
088;Ajuste en Seguro de retiro Gravado
089;Ajuste en Vales de despensa Gravado
090;Ajuste en Vales de restaurante Gravado
091;Ajuste en Vales de gasolina Gravado
092;Ajuste en Vales de ropa Gravado
093;Ajuste en Ayuda para renta Gravado
094;Ajuste en Ayuda para artículos escolares Gravado
095;Ajuste en Ayuda para anteojos Gravado
096;Ajuste en Ayuda para transporte Gravado
097;Ajuste en Ayuda para gastos de funeral Gravado
098;Ajuste a ingresos asimilados a salarios gravados
099;Ajuste a ingresos por sueldos y salarios gravados
100;Ajuste en Viáticos exentos
101;ISR Retenido de ejercicio anterior
102;Ajuste a pagos por gratificaciones, primas, compensaciones, recompensas u otros a extrabajadores derivados de jubilación en parcialidades, gravados
103;Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en parcialidades derivados de la ejecución de una resolución judicial o de un laudo gravados
104;Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en parcialidades derivados de la ejecución de una resolución judicial o de un laudo exentos
105;Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en una sola exhibición derivados de la ejecución de una resolución judicial o de un laudo gravados
106;Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en una sola exhibición derivados de la ejecución de una resolución judicial o de un laudo exentos
107;Ajuste al Subsidio Causado
1 001 Seguridad social
2 002 ISR
3 003 Aportaciones a retiro, cesantía en edad avanzada y vejez.
4 004 Otros
5 005 Aportaciones a Fondo de vivienda
6 006 Descuento por incapacidad
7 007 Pensión alimenticia
8 008 Renta
9 009 Préstamos provenientes del Fondo Nacional de la Vivienda para los Trabajadores
10 010 Pago por crédito de vivienda
11 011 Pago de abonos INFONACOT
12 012 Anticipo de salarios
13 013 Pagos hechos con exceso al trabajador
14 014 Errores
15 015 Pérdidas
16 016 Averías
17 017 Adquisición de artículos producidos por la empresa o establecimiento
18 018 Cuotas para la constitución y fomento de sociedades cooperativas y de cajas de ahorro
19 019 Cuotas sindicales
20 020 Ausencia (Ausentismo)
21 021 Cuotas obrero patronales
22 022 Impuestos Locales
23 023 Aportaciones voluntarias
24 024 Ajuste en Gratificación Anual (Aguinaldo) Exento
25 025 Ajuste en Gratificación Anual (Aguinaldo) Gravado
26 026 Ajuste en Participación de los Trabajadores en las Utilidades PTU Exento
27 027 Ajuste en Participación de los Trabajadores en las Utilidades PTU Gravado
28 028 Ajuste en Reembolso de Gastos Médicos Dentales y Hospitalarios Exento
29 029 Ajuste en Fondo de ahorro Exento
30 030 Ajuste en Caja de ahorro Exento
31 031 Ajuste en Contribuciones a Cargo del Trabajador Pagadas por el Patrón Exento
32 032 Ajuste en Premios por puntualidad Gravado
33 033 Ajuste en Prima de Seguro de vida Exento
34 034 Ajuste en Seguro de Gastos Médicos Mayores Exento
35 035 Ajuste en Cuotas Sindicales Pagadas por el Patrón Exento
36 036 Ajuste en Subsidios por incapacidad Exento
37 037 Ajuste en Becas para trabajadores y/o hijos Exento
38 038 Ajuste en Horas extra Exento
39 039 Ajuste en Horas extra Gravado
40 040 Ajuste en Prima dominical Exento
41 041 Ajuste en Prima dominical Gravado
42 042 Ajuste en Prima vacacional Exento
43 043 Ajuste en Prima vacacional Gravado
44 044 Ajuste en Prima por antigüedad Exento
45 045 Ajuste en Prima por antigüedad Gravado
46 046 Ajuste en Pagos por separación Exento
47 047 Ajuste en Pagos por separación Gravado
48 048 Ajuste en Seguro de retiro Exento
49 049 Ajuste en Indemnizaciones Exento
50 050 Ajuste en Indemnizaciones Gravado
51 051 Ajuste en Reembolso por funeral Exento
52 052 Ajuste en Cuotas de seguridad social pagadas por el patrón Exento
53 053 Ajuste en Comisiones Gravado
54 054 Ajuste en Vales de despensa Exento
55 055 Ajuste en Vales de restaurante Exento
56 056 Ajuste en Vales de gasolina Exento
57 057 Ajuste en Vales de ropa Exento
58 058 Ajuste en Ayuda para renta Exento
59 059 Ajuste en Ayuda para artículos escolares Exento
60 060 Ajuste en Ayuda para anteojos Exento
61 061 Ajuste en Ayuda para transporte Exento
62 062 Ajuste en Ayuda para gastos de funeral Exento
63 063 Ajuste en Otros ingresos por salarios Exento
64 064 Ajuste en Otros ingresos por salarios Gravado
65 065 Ajuste en Jubilaciones, pensiones o haberes de retiro en una sola exhibición Exento
66 066 Ajuste en Jubilaciones, pensiones o haberes de retiro en una sola exhibición Gravado
67 067 Ajuste en Pagos por separación Acumulable
68 068 Ajuste en Pagos por separación No acumulable
69 069 Ajuste en Jubilaciones, pensiones o haberes de retiro en parcialidades Exento
70 070 Ajuste en Jubilaciones, pensiones o haberes de retiro en parcialidades Gravado
71 071 Ajuste en Subsidio para el empleo (efectivamente entregado al trabajador)
72 072 Ajuste en Ingresos en acciones o títulos valor que representan bienes Exento
73 073 Ajuste en Ingresos en acciones o títulos valor que representan bienes Gravado
74 074 Ajuste en Alimentación Exento
75 075 Ajuste en Alimentación Gravado
76 076 Ajuste en Habitación Exento
77 077 Ajuste en Habitación Gravado
78 078 Ajuste en Premios por asistencia
79 079 Ajuste en Pagos distintos a los listados y que no deben considerarse como ingreso por sueldos, salarios o ingresos asimilados.
80 080 Ajuste en Viáticos gravados
81 081 Ajuste en Viáticos (entregados al trabajador)
82 082 Ajuste en Fondo de ahorro Gravado
83 083 Ajuste en Caja de ahorro Gravado
84 084 Ajuste en Prima de Seguro de vida Gravado
85 085 Ajuste en Seguro de Gastos Médicos Mayores Gravado
86 086 Ajuste en Subsidios por incapacidad Gravado
87 087 Ajuste en Becas para trabajadores y/o hijos Gravado
88 088 Ajuste en Seguro de retiro Gravado
89 089 Ajuste en Vales de despensa Gravado
90 090 Ajuste en Vales de restaurante Gravado
91 091 Ajuste en Vales de gasolina Gravado
92 092 Ajuste en Vales de ropa Gravado
93 093 Ajuste en Ayuda para renta Gravado
94 094 Ajuste en Ayuda para artículos escolares Gravado
95 095 Ajuste en Ayuda para anteojos Gravado
96 096 Ajuste en Ayuda para transporte Gravado
97 097 Ajuste en Ayuda para gastos de funeral Gravado
98 098 Ajuste a ingresos asimilados a salarios gravados
99 099 Ajuste a ingresos por sueldos y salarios gravados
100 100 Ajuste en Viáticos exentos
101 101 ISR Retenido de ejercicio anterior
102 102 Ajuste a pagos por gratificaciones, primas, compensaciones, recompensas u otros a extrabajadores derivados de jubilación en parcialidades, gravados
103 103 Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en parcialidades derivados de la ejecución de una resolución judicial o de un laudo gravados
104 104 Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en parcialidades derivados de la ejecución de una resolución judicial o de un laudo exentos
105 105 Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en una sola exhibición derivados de la ejecución de una resolución judicial o de un laudo gravados
106 106 Ajuste a pagos que se realicen a extrabajadores que obtengan una jubilación en una sola exhibición derivados de la ejecución de una resolución judicial o de un laudo exentos
107 107 Ajuste al Subsidio Causado

View File

@ -0,0 +1,95 @@
AGU;MEX;Aguascalientes;2022-01-01;;
BCN;MEX;"Baja California";2022-01-01;;
BCS;MEX;"Baja California Sur";2022-01-01;;
CAM;MEX;Campeche;2022-01-01;;
CHP;MEX;Chiapas;2022-01-01;;
CHH;MEX;Chihuahua;2022-01-01;;
COA;MEX;Coahuila;2022-01-01;;
COL;MEX;Colima;2022-01-01;;
CMX;MEX;"Ciudad de México";2022-01-01;;
DUR;MEX;Durango;2022-01-01;;
GUA;MEX;Guanajuato;2022-01-01;;
GRO;MEX;Guerrero;2022-01-01;;
HID;MEX;Hidalgo;2022-01-01;;
JAL;MEX;Jalisco;2022-01-01;;
MEX;MEX;"Estado de México";2022-01-01;;
MIC;MEX;Michoacán;2022-01-01;;
MOR;MEX;Morelos;2022-01-01;;
NAY;MEX;Nayarit;2022-01-01;;
NLE;MEX;"Nuevo León";2022-01-01;;
OAX;MEX;Oaxaca;2022-01-01;;
PUE;MEX;Puebla;2022-01-01;;
QUE;MEX;Querétaro;2022-01-01;;
ROO;MEX;"Quintana Roo";2022-01-01;;
SLP;MEX;"San Luis Potosí";2022-01-01;;
SIN;MEX;Sinaloa;2022-01-01;;
SON;MEX;Sonora;2022-01-01;;
TAB;MEX;Tabasco;2022-01-01;;
TAM;MEX;Tamaulipas;2022-01-01;;
TLA;MEX;Tlaxcala;2022-01-01;;
VER;MEX;Veracruz;2022-01-01;;
YUC;MEX;Yucatán;2022-01-01;;
ZAC;MEX;Zacatecas;2022-01-01;;
AL;USA;Alabama;2022-01-01;;
AK;USA;Alaska;2022-01-01;;
AZ;USA;Arizona;2022-01-01;;
AR;USA;Arkansas;2022-01-01;;
CA;USA;California;2022-01-01;;
NC;USA;"Carolina del Norte";2022-01-01;;
SC;USA;"Carolina del Sur";2022-01-01;;
CO;USA;Colorado;2022-01-01;;
CT;USA;Connecticut;2022-01-01;;
ND;USA;"Dakota del Norte";2022-01-01;;
SD;USA;"Dakota del Sur";2022-01-01;;
DE;USA;Delaware;2022-01-01;;
FL;USA;Florida;2022-01-01;;
GA;USA;Georgia;2022-01-01;;
HI;USA;Hawái;2022-01-01;;
ID;USA;Idaho;2022-01-01;;
IL;USA;Illinois;2022-01-01;;
IN;USA;Indiana;2022-01-01;;
IA;USA;Iowa;2022-01-01;;
KS;USA;Kansas;2022-01-01;;
KY;USA;Kentucky;2022-01-01;;
LA;USA;Luisiana;2022-01-01;;
ME;USA;Maine;2022-01-01;;
MD;USA;Maryland;2022-01-01;;
MA;USA;Massachusetts;2022-01-01;;
MI;USA;Míchigan;2022-01-01;;
MN;USA;Minnesota;2022-01-01;;
MS;USA;Misisipi;2022-01-01;;
MO;USA;Misuri;2022-01-01;;
MT;USA;Montana;2022-01-01;;
NE;USA;Nebraska;2022-01-01;;
NV;USA;Nevada;2022-01-01;;
NJ;USA;"Nueva Jersey";2022-01-01;;
NY;USA;"Nueva York";2022-01-01;;
NH;USA;"Nuevo Hampshire";2022-01-01;;
NM;USA;"Nuevo México";2022-01-01;;
OH;USA;Ohio;2022-01-01;;
OK;USA;Oklahoma;2022-01-01;;
OR;USA;Oregón;2022-01-01;;
PA;USA;Pensilvania;2022-01-01;;
RI;USA;"Rhode Island";2022-01-01;;
TN;USA;Tennessee;2022-01-01;;
TX;USA;Texas;2022-01-01;;
UT;USA;Utah;2022-01-01;;
VT;USA;Vermont;2022-01-01;;
VA;USA;Virginia;2022-01-01;;
WV;USA;"Virginia Occidental";2022-01-01;;
WA;USA;Washington;2022-01-01;;
WI;USA;Wisconsin;2022-01-01;;
WY;USA;Wyoming;2022-01-01;;
ON;CAN;Ontario ;2022-01-01;;
QC;CAN; Quebec ;2022-01-01;;
NS;CAN;" Nueva Escocia";2022-01-01;;
NB;CAN;"Nuevo Brunswick ";2022-01-01;;
MB;CAN; Manitoba;2022-01-01;;
BC;CAN;" Columbia Británica";2022-01-01;;
PE;CAN;" Isla del Príncipe Eduardo";2022-01-01;;
SK;CAN; Saskatchewan;2022-01-01;;
AB;CAN; Alberta;2022-01-01;;
NL;CAN;" Terranova y Labrador";2022-01-01;;
NT;CAN;" Territorios del Noroeste";2022-01-01;;
YT;CAN; Yukón;2022-01-01;;
UN;CAN; Nunavut;2022-01-01;;
1 AGU MEX Aguascalientes 2022-01-01
2 BCN MEX Baja California 2022-01-01
3 BCS MEX Baja California Sur 2022-01-01
4 CAM MEX Campeche 2022-01-01
5 CHP MEX Chiapas 2022-01-01
6 CHH MEX Chihuahua 2022-01-01
7 COA MEX Coahuila 2022-01-01
8 COL MEX Colima 2022-01-01
9 CMX MEX Ciudad de México 2022-01-01
10 DUR MEX Durango 2022-01-01
11 GUA MEX Guanajuato 2022-01-01
12 GRO MEX Guerrero 2022-01-01
13 HID MEX Hidalgo 2022-01-01
14 JAL MEX Jalisco 2022-01-01
15 MEX MEX Estado de México 2022-01-01
16 MIC MEX Michoacán 2022-01-01
17 MOR MEX Morelos 2022-01-01
18 NAY MEX Nayarit 2022-01-01
19 NLE MEX Nuevo León 2022-01-01
20 OAX MEX Oaxaca 2022-01-01
21 PUE MEX Puebla 2022-01-01
22 QUE MEX Querétaro 2022-01-01
23 ROO MEX Quintana Roo 2022-01-01
24 SLP MEX San Luis Potosí 2022-01-01
25 SIN MEX Sinaloa 2022-01-01
26 SON MEX Sonora 2022-01-01
27 TAB MEX Tabasco 2022-01-01
28 TAM MEX Tamaulipas 2022-01-01
29 TLA MEX Tlaxcala 2022-01-01
30 VER MEX Veracruz 2022-01-01
31 YUC MEX Yucatán 2022-01-01
32 ZAC MEX Zacatecas 2022-01-01
33 AL USA Alabama 2022-01-01
34 AK USA Alaska 2022-01-01
35 AZ USA Arizona 2022-01-01
36 AR USA Arkansas 2022-01-01
37 CA USA California 2022-01-01
38 NC USA Carolina del Norte 2022-01-01
39 SC USA Carolina del Sur 2022-01-01
40 CO USA Colorado 2022-01-01
41 CT USA Connecticut 2022-01-01
42 ND USA Dakota del Norte 2022-01-01
43 SD USA Dakota del Sur 2022-01-01
44 DE USA Delaware 2022-01-01
45 FL USA Florida 2022-01-01
46 GA USA Georgia 2022-01-01
47 HI USA Hawái 2022-01-01
48 ID USA Idaho 2022-01-01
49 IL USA Illinois 2022-01-01
50 IN USA Indiana 2022-01-01
51 IA USA Iowa 2022-01-01
52 KS USA Kansas 2022-01-01
53 KY USA Kentucky 2022-01-01
54 LA USA Luisiana 2022-01-01
55 ME USA Maine 2022-01-01
56 MD USA Maryland 2022-01-01
57 MA USA Massachusetts 2022-01-01
58 MI USA Míchigan 2022-01-01
59 MN USA Minnesota 2022-01-01
60 MS USA Misisipi 2022-01-01
61 MO USA Misuri 2022-01-01
62 MT USA Montana 2022-01-01
63 NE USA Nebraska 2022-01-01
64 NV USA Nevada 2022-01-01
65 NJ USA Nueva Jersey 2022-01-01
66 NY USA Nueva York 2022-01-01
67 NH USA Nuevo Hampshire 2022-01-01
68 NM USA Nuevo México 2022-01-01
69 OH USA Ohio 2022-01-01
70 OK USA Oklahoma 2022-01-01
71 OR USA Oregón 2022-01-01
72 PA USA Pensilvania 2022-01-01
73 RI USA Rhode Island 2022-01-01
74 TN USA Tennessee 2022-01-01
75 TX USA Texas 2022-01-01
76 UT USA Utah 2022-01-01
77 VT USA Vermont 2022-01-01
78 VA USA Virginia 2022-01-01
79 WV USA Virginia Occidental 2022-01-01
80 WA USA Washington 2022-01-01
81 WI USA Wisconsin 2022-01-01
82 WY USA Wyoming 2022-01-01
83 ON CAN Ontario  2022-01-01
84 QC CAN Quebec  2022-01-01
85 NS CAN  Nueva Escocia 2022-01-01
86 NB CAN Nuevo Brunswick  2022-01-01
87 MB CAN Manitoba 2022-01-01
88 BC CAN  Columbia Británica 2022-01-01
89 PE CAN  Isla del Príncipe Eduardo 2022-01-01
90 SK CAN Saskatchewan 2022-01-01
91 AB CAN Alberta 2022-01-01
92 NL CAN  Terranova y Labrador 2022-01-01
93 NT CAN  Territorios del Noroeste 2022-01-01
94 YT CAN Yukón 2022-01-01
95 UN CAN Nunavut 2022-01-01

View File

@ -0,0 +1,22 @@
1;Efectivo;No;Opcional;"""=IF(C7=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C7=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C7=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A7=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C7=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
2;"Cheque nominativo";Sí;Opcional;Opcional;Opcional;[0-9]{11}|[0-9]{18};Opcional;Opcional;[0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50};No;"Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio.";2022-01-01;
3;"Transferencia electrónica de fondos";Sí;Opcional;Opcional;Opcional;[0-9]{10}|[0-9]{16}|[0-9]{18};Opcional;Opcional;[0-9]{10}|[0-9]{18};Opcional;"Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio.";2022-01-01;
4;"Tarjeta de crédito";Sí;Opcional;Opcional;Opcional;[0-9]{16};Opcional;Opcional;[0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50};No;"Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio.";2022-01-01;
5;"Monedero electrónico";Sí;Opcional;Opcional;Opcional;[0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50};Opcional;Opcional;[0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50};No;No;2022-01-01;
6;"Dinero electrónico";Sí;Opcional;Opcional;Opcional;[0-9]{10};No;No;No;No;No;2022-01-01;
8;"Vales de despensa";No;Opcional;"""=IF(C13=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C13=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C13=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A13=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C13=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
12;"Dación en pago";No;Opcional;"""=IF(C14=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C14=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C14=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A14=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C14=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
13;"Pago por subrogación";No;Opcional;"""=IF(C15=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C15=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C15=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A15=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C15=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
14;"Pago por consignación";No;Opcional;"""=IF(C16=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C16=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C16=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A16=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C16=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
15;Condonación;No;Opcional;"""=IF(C17=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C17=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C17=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A17=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C17=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
17;Compensación;No;Opcional;"""=IF(C18=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C18=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C18=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A18=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C18=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
23;Novación;No;Opcional;"""=IF(C19=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C19=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C19=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A19=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C19=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
24;Confusión;No;Opcional;"""=IF(C20=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C20=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C20=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A20=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C20=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
25;"Remisión de deuda";No;Opcional;"""=IF(C21=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C21=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C21=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A21=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C21=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
26;"Prescripción o caducidad";No;Opcional;"""=IF(C22=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C22=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C22=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A22=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C22=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
27;"A satisfacción del acreedor";No;Opcional;"""=IF(C23=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(C23=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C23=""""Sí"""",""""Sí"""",""""No"""")""";"""=IF(A23=""""Sí"""",""""Sí"""",""""No"""")""";No;"""=IF(C23=""""Sí"""",""""Sí"""",""""No"""")""";No;2022-01-01;
28;"Tarjeta de débito";Sí;Opcional;Opcional;Opcional;[0-9]{16};Opcional;Opcional;[0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50};No;"Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio.";2022-01-01;
29;"Tarjeta de servicios";Sí;Opcional;Opcional;Opcional;[0-9]{15,16};Opcional;Opcional;[0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50};No;"Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio.";2022-01-01;
30;"Aplicación de anticipos";No;Opcional;No;No;No;No;No;No;No;No;2022-01-01;
31;"Intermediario pagos";No;Opcional;No;No;No;No;No;No;No;No;2022-01-01;
99;"Por definir";Opcional;Opcional;Opcional;Opcional;Opcional;Opcional;Opcional;Opcional;Opcional;Opcional;2022-01-01;
1 1 Efectivo No Opcional "=IF(C7=""Sí"",""Sí"",""No"")" "=IF(C7=""Sí"",""Sí"",""No"")" No "=IF(C7=""Sí"",""Sí"",""No"")" "=IF(A7=""Sí"",""Sí"",""No"")" No "=IF(C7=""Sí"",""Sí"",""No"")" No 2022-01-01
2 2 Cheque nominativo Opcional Opcional Opcional [0-9]{11}|[0-9]{18} Opcional Opcional [0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50} No Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio. 2022-01-01
3 3 Transferencia electrónica de fondos Opcional Opcional Opcional [0-9]{10}|[0-9]{16}|[0-9]{18} Opcional Opcional [0-9]{10}|[0-9]{18} Opcional Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio. 2022-01-01
4 4 Tarjeta de crédito Opcional Opcional Opcional [0-9]{16} Opcional Opcional [0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50} No Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio. 2022-01-01
5 5 Monedero electrónico Opcional Opcional Opcional [0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50} Opcional Opcional [0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50} No No 2022-01-01
6 6 Dinero electrónico Opcional Opcional Opcional [0-9]{10} No No No No No 2022-01-01
7 8 Vales de despensa No Opcional "=IF(C13=""Sí"",""Sí"",""No"")" "=IF(C13=""Sí"",""Sí"",""No"")" No "=IF(C13=""Sí"",""Sí"",""No"")" "=IF(A13=""Sí"",""Sí"",""No"")" No "=IF(C13=""Sí"",""Sí"",""No"")" No 2022-01-01
8 12 Dación en pago No Opcional "=IF(C14=""Sí"",""Sí"",""No"")" "=IF(C14=""Sí"",""Sí"",""No"")" No "=IF(C14=""Sí"",""Sí"",""No"")" "=IF(A14=""Sí"",""Sí"",""No"")" No "=IF(C14=""Sí"",""Sí"",""No"")" No 2022-01-01
9 13 Pago por subrogación No Opcional "=IF(C15=""Sí"",""Sí"",""No"")" "=IF(C15=""Sí"",""Sí"",""No"")" No "=IF(C15=""Sí"",""Sí"",""No"")" "=IF(A15=""Sí"",""Sí"",""No"")" No "=IF(C15=""Sí"",""Sí"",""No"")" No 2022-01-01
10 14 Pago por consignación No Opcional "=IF(C16=""Sí"",""Sí"",""No"")" "=IF(C16=""Sí"",""Sí"",""No"")" No "=IF(C16=""Sí"",""Sí"",""No"")" "=IF(A16=""Sí"",""Sí"",""No"")" No "=IF(C16=""Sí"",""Sí"",""No"")" No 2022-01-01
11 15 Condonación No Opcional "=IF(C17=""Sí"",""Sí"",""No"")" "=IF(C17=""Sí"",""Sí"",""No"")" No "=IF(C17=""Sí"",""Sí"",""No"")" "=IF(A17=""Sí"",""Sí"",""No"")" No "=IF(C17=""Sí"",""Sí"",""No"")" No 2022-01-01
12 17 Compensación No Opcional "=IF(C18=""Sí"",""Sí"",""No"")" "=IF(C18=""Sí"",""Sí"",""No"")" No "=IF(C18=""Sí"",""Sí"",""No"")" "=IF(A18=""Sí"",""Sí"",""No"")" No "=IF(C18=""Sí"",""Sí"",""No"")" No 2022-01-01
13 23 Novación No Opcional "=IF(C19=""Sí"",""Sí"",""No"")" "=IF(C19=""Sí"",""Sí"",""No"")" No "=IF(C19=""Sí"",""Sí"",""No"")" "=IF(A19=""Sí"",""Sí"",""No"")" No "=IF(C19=""Sí"",""Sí"",""No"")" No 2022-01-01
14 24 Confusión No Opcional "=IF(C20=""Sí"",""Sí"",""No"")" "=IF(C20=""Sí"",""Sí"",""No"")" No "=IF(C20=""Sí"",""Sí"",""No"")" "=IF(A20=""Sí"",""Sí"",""No"")" No "=IF(C20=""Sí"",""Sí"",""No"")" No 2022-01-01
15 25 Remisión de deuda No Opcional "=IF(C21=""Sí"",""Sí"",""No"")" "=IF(C21=""Sí"",""Sí"",""No"")" No "=IF(C21=""Sí"",""Sí"",""No"")" "=IF(A21=""Sí"",""Sí"",""No"")" No "=IF(C21=""Sí"",""Sí"",""No"")" No 2022-01-01
16 26 Prescripción o caducidad No Opcional "=IF(C22=""Sí"",""Sí"",""No"")" "=IF(C22=""Sí"",""Sí"",""No"")" No "=IF(C22=""Sí"",""Sí"",""No"")" "=IF(A22=""Sí"",""Sí"",""No"")" No "=IF(C22=""Sí"",""Sí"",""No"")" No 2022-01-01
17 27 A satisfacción del acreedor No Opcional "=IF(C23=""Sí"",""Sí"",""No"")" "=IF(C23=""Sí"",""Sí"",""No"")" No "=IF(C23=""Sí"",""Sí"",""No"")" "=IF(A23=""Sí"",""Sí"",""No"")" No "=IF(C23=""Sí"",""Sí"",""No"")" No 2022-01-01
18 28 Tarjeta de débito Opcional Opcional Opcional [0-9]{16} Opcional Opcional [0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50} No Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio. 2022-01-01
19 29 Tarjeta de servicios Opcional Opcional Opcional [0-9]{15,16} Opcional Opcional [0-9]{10,11}|[0-9]{15,16}|[0-9]{18}|[A-Z0-9_]{10,50} No Si el RFC del emisor de la cuenta ordenante es XEXX010101000, este campo es obligatorio. 2022-01-01
20 30 Aplicación de anticipos No Opcional No No No No No No No No 2022-01-01
21 31 Intermediario pagos No Opcional No No No No No No No No 2022-01-01
22 99 Por definir Opcional Opcional Opcional Opcional Opcional Opcional Opcional Opcional Opcional Opcional 2022-01-01

View File

@ -0,0 +1,664 @@
01;AGU;Aguascalientes;2022-01-01;;
01;BCN;Ensenada;2022-01-01;;
01;BCS;"Ciudad Constitución";2022-01-01;;
01;CAM;"San Francisco de Campeche";2022-01-01;;
01;COA;"Ciudad Acuña";2022-01-01;;
01;COL;Colima;2022-01-01;;
01;CHH;"Santa Rosalía de Camargo";2022-01-01;;
01;CHP;"Comitán de Domínguez";2022-01-01;;
01;CMX;"Ciudad de México";2022-01-01;;
01;DUR;"Victoria de Durango";2022-01-01;;
01;GRO;"Acapulco de Juárez";2022-01-01;;
01;GUA;Acámbaro;2022-01-01;;
01;HID;Actopan;2022-01-01;;
01;JAL;Ameca;2022-01-01;;
01;MEX;"Ciudad Adolfo López Mateos";2022-01-01;;
01;MIC;"Apatzingán de la Constitución";2022-01-01;;
01;MOR;"Cuautla (Cuautla de Morelos)";2022-01-01;;
01;NAY;"Santiago Ixcuintla";2022-01-01;;
01;NLE;"Ciudad Apodaca";2022-01-01;;
01;OAX;"Juchitán (Juchitán de Zaragoza)";2022-01-01;;
01;PUE;Atlixco;2022-01-01;;
01;QUE;Querétaro;2022-01-01;;
01;ROO;Cancún;2022-01-01;;
01;SIN;"Los Mochis";2022-01-01;;
01;SLP;"Ciudad Valles";2022-01-01;;
01;SON;"San Luis Río Colorado";2022-01-01;;
01;TAB;Cárdenas;2022-01-01;;
01;TAM;Altamira;2022-01-01;;
01;TLA;Apizaco;2022-01-01;;
01;VER;Acayucan;2022-01-01;;
01;YUC;Mérida;2022-01-01;;
01;ZAC;Fresnillo;2022-01-01;;
02;AGU;Calvillo;2022-01-01;;
02;BCN;Mexicali;2022-01-01;;
02;BCS;"La Paz";2022-01-01;;
02;CAM;"Ciudad del Carmen";2022-01-01;;
02;COA;Frontera;2022-01-01;;
02;COL;Manzanillo;2022-01-01;;
02;CHH;Chihuahua;2022-01-01;;
02;CHP;"San Cristóbal de las Casas";2022-01-01;;
02;CMX;"Ciudad de México";2022-01-01;;
02;DUR;"Gómez Palacio";2022-01-01;;
02;GRO;"Chilpancingo de los Bravo";2022-01-01;;
02;GUA;"San miguel de Allende";2022-01-01;;
02;HID;Apan;2022-01-01;;
02;JAL;"Ciudad Guzmán";2022-01-01;;
02;MEX;Chimalhuacán;2022-01-01;;
02;MIC;"Los Reyes de Salgado";2022-01-01;;
02;MOR;Cuernavaca;2022-01-01;;
02;NAY;Tepic;2022-01-01;;
02;NLE;"San Pedro Garza García";2022-01-01;;
02;OAX;"Oaxaca de Juárez";2022-01-01;;
02;PUE;"Izúcar de Matamoros";2022-01-01;;
02;QUE;"San Juan del Rio";2022-01-01;;
02;ROO;Cozumel;2022-01-01;;
02;SIN;"Culiacán Rosales";2022-01-01;;
02;SLP;Ébano;2022-01-01;;
02;SON;"Agua Prieta";2022-01-01;;
02;TAB;Villahermosa;2022-01-01;;
02;TAM;"Ciudad Camargo";2022-01-01;;
02;TLA;"Villa Vicente Guerrero";2022-01-01;;
02;VER;Naranjos;2022-01-01;;
02;YUC;Tizimín;2022-01-01;;
02;ZAC;"Jerez de García Salinas";2022-01-01;;
03;AGU;"San Francisco de los Romo";2022-01-01;;
03;BCN;Tecate;2022-01-01;;
03;BCS;"Cabo San Lucas";2022-01-01;;
03;CAM;Calkiní;2022-01-01;;
03;COA;Matamoros;2022-01-01;;
03;COL;Tecoman;2022-01-01;;
03;CHH;Cuauhtémoc;2022-01-01;;
03;CHP;"Tapachula de Córdova y Ordóñez";2022-01-01;;
03;CMX;"Ciudad de México";2022-01-01;;
03;DUR;"Ciudad Lerdo";2022-01-01;;
03;GRO;"Iguala de la Independencia";2022-01-01;;
03;GUA;Celaya;2022-01-01;;
03;HID;"Pachuca de Soto";2022-01-01;;
03;JAL;Guadalajara;2022-01-01;;
03;MEX;"Coacalco de Berriozabal";2022-01-01;;
03;MIC;"Ciudad Hidalgo";2022-01-01;;
03;MOR;Galeana;2022-01-01;;
03;NAY;Tuxpan;2022-01-01;;
03;NLE;"Ciudad General Escobedo";2022-01-01;;
03;OAX;"Salina Cruz";2022-01-01;;
03;PUE;"Puebla (Heroica Puebla)";2022-01-01;;
03;ROO;"Felipe Carrillo Puerto";2022-01-01;;
03;SIN;"Escuinapa de Hidalgo";2022-01-01;;
03;SLP;Matehuala;2022-01-01;;
03;SON;"Heroica Caborca";2022-01-01;;
03;TAB;Comalcalco;2022-01-01;;
03;TAM;"Ciudad Madero";2022-01-01;;
03;TLA;"Tlaxcala (Tlaxcala de Xicotencatl)";2022-01-01;;
03;VER;"Boca del RÍo";2022-01-01;;
03;YUC;Ticul;2022-01-01;;
03;ZAC;Zacatecas;2022-01-01;;
04;AGU;"Jesús María";2022-01-01;;
04;BCN;Tijuana;2022-01-01;;
04;BCS;"San José del Cabo";2022-01-01;;
04;CAM;Candelaria;2022-01-01;;
04;COA;Monclova;2022-01-01;;
04;COL;"Ciudad de Villa de Álvarez";2022-01-01;;
04;CHH;Delicias;2022-01-01;;
04;CHP;"Tuxtla Gutiérrez";2022-01-01;;
04;CMX;"Ciudad de México";2022-01-01;;
04;DUR;"Santiago Papasquiaro";2022-01-01;;
04;GRO;"Taxco de Alarcón";2022-01-01;;
04;GUA;Cortazar;2022-01-01;;
04;HID;"Cd. de Fray Bernardino de Sahagún";2022-01-01;;
04;JAL;"Lagos de Moreno";2022-01-01;;
04;MEX;"Cuautitlán Izcalli";2022-01-01;;
04;MIC;"Jacona de Plancarte";2022-01-01;;
04;MOR;Jojutla;2022-01-01;;
04;NAY;Acaponeta;2022-01-01;;
04;NLE;Guadalupe;2022-01-01;;
04;OAX;"San Juan Bautista Tuxtepec";2022-01-01;;
04;PUE;"San Martín Texmelucan de Labastida";2022-01-01;;
04;QUE;"El Pueblito";2022-01-01;;
04;ROO;Chetumal;2022-01-01;;
04;SIN;Guasave;2022-01-01;;
04;SLP;Rioverde;2022-01-01;;
04;SON;"Ciudad Obregón";2022-01-01;;
04;TAB;"Emiliano Zapata";2022-01-01;;
04;TAM;"Ciudad Mante";2022-01-01;;
04;TLA;Huamantla;2022-01-01;;
04;VER;Coatepec;2022-01-01;;
04;YUC;"Motul de Carrillo Puerto";2022-01-01;;
04;ZAC;Guadalupe;2022-01-01;;
05;AGU;"Pabellón de Arteaga";2022-01-01;;
05;BCN;"Playas de Rosarito";2022-01-01;;
05;BCS;Loreto;2022-01-01;;
05;CAM;Escárcega;2022-01-01;;
05;COA;"Parras de la Fuente";2022-01-01;;
05;COL;"Ciudad de Armería";2022-01-01;;
05;CHH;"Hidalgo del Parral";2022-01-01;;
05;CHP;"Venustiano Carranza";2022-01-01;;
05;CMX;"Ciudad de México";2022-01-01;;
05;DUR;Canatlán;2022-01-01;;
05;GRO;Arcelia;2022-01-01;;
05;GUA;Guanajuato;2022-01-01;;
05;HID;"Tula de Allende";2022-01-01;;
05;JAL;Ocotlán;2022-01-01;;
05;MEX;"Ecatepec de Morelos";2022-01-01;;
05;MIC;"La piedad de Cabadas";2022-01-01;;
05;MOR;"Puente de Ixtla";2022-01-01;;
05;NAY;Tecuala;2022-01-01;;
05;NLE;Linares;2022-01-01;;
05;OAX;"Matías Romero Avendaño";2022-01-01;;
05;PUE;Tehuacan;2022-01-01;;
05;ROO;"Playa del Carmen";2022-01-01;;
05;SIN;Mazatlán;2022-01-01;;
05;SLP;"San Luis Potosí";2022-01-01;;
05;SON;Empalme;2022-01-01;;
05;TAB;"Jalpa de Méndez";2022-01-01;;
05;TAM;"Heroica Matamoros";2022-01-01;;
05;TLA;Calpulalpan;2022-01-01;;
05;VER;"Agua dulce";2022-01-01;;
05;YUC;Valladolid;2022-01-01;;
05;ZAC;"Río Grande";2022-01-01;;
06;AGU;"Rincón de Romos";2022-01-01;;
06;BCN;"Rodolfo Sánchez T. (Maneadero)";2022-01-01;;
06;BCS;"Puerto Adolfo López Mateos";2022-01-01;;
06;CAM;Sabancuy;2022-01-01;;
06;COA;"Piedras Negras";2022-01-01;;
06;CHH;Juárez;2022-01-01;;
06;CHP;Jiquipilas;2022-01-01;;
06;CMX;"Ciudad de México";2022-01-01;;
06;DUR;"San Juan del Río del Centauro del Norte";2022-01-01;;
06;GRO;"Ayutla de los Libres";2022-01-01;;
06;GUA;Irapuato;2022-01-01;;
06;HID;Tulancingo;2022-01-01;;
06;JAL;"Puerto Vallarta";2022-01-01;;
06;MEX;"Huixquilucan de Degollado";2022-01-01;;
06;MIC;Morelia;2022-01-01;;
06;MOR;"Santa Rosa Treinta";2022-01-01;;
06;NAY;Compostela;2022-01-01;;
06;NLE;Montemorelos;2022-01-01;;
06;OAX;"Heroica Ciudad de Huajuapan de León";2022-01-01;;
06;PUE;Teziutlan;2022-01-01;;
06;ROO;Kantunilkin;2022-01-01;;
06;SIN;Guamúchil;2022-01-01;;
06;SLP;"Soledad de Graciano Sánchez";2022-01-01;;
06;SON;"Heroica Guaymas";2022-01-01;;
06;TAM;"Nuevo Laredo";2022-01-01;;
06;TLA;Chiautempan;2022-01-01;;
06;VER;Coatzacoalcos;2022-01-01;;
06;YUC;Kanasín;2022-01-01;;
06;ZAC;"Ciudad Cuauhtémoc";2022-01-01;;
07;AGU;Asientos;2022-01-01;;
07;BCN;"San Felipe";2022-01-01;;
07;BCS;"Todos Santos";2022-01-01;;
07;CAM;Hopelchén;2022-01-01;;
07;COA;Sabinas;2022-01-01;;
07;CHH;"Nuevo Casas Grandes";2022-01-01;;
07;CHP;Villaflores;2022-01-01;;
07;CMX;"Ciudad de México";2022-01-01;;
07;DUR;"Peñón Blanco";2022-01-01;;
07;GRO;"Atoyac de Álvarez";2022-01-01;;
07;GUA;"León de los Aldama";2022-01-01;;
07;HID;Zimapan;2022-01-01;;
07;JAL;"San Juan de los Lagos";2022-01-01;;
07;MEX;"Los Reyes Acaquilpan (La Paz)";2022-01-01;;
07;MIC;Pátzcuaro;2022-01-01;;
07;MOR;"Zacatepec de Hidalgo";2022-01-01;;
07;NAY;"Francisco I. Madero (Puga)";2022-01-01;;
07;NLE;Monterrey;2022-01-01;;
07;OAX;"Loma Bonita";2022-01-01;;
07;PUE;"San Andrés Cholula";2022-01-01;;
07;ROO;"Isla Mujeres";2022-01-01;;
07;SIN;Navolato;2022-01-01;;
07;SLP;Charcas;2022-01-01;;
07;SON;Hermosillo;2022-01-01;;
07;TAB;Macuspana;2022-01-01;;
07;TAM;Reynosa;2022-01-01;;
07;VER;Córdoba;2022-01-01;;
07;ZAC;Ojocaliente;2022-01-01;;
08;AGU;Tepezalá;2022-01-01;;
08;BCS;"Heroica Mulegé";2022-01-01;;
08;CAM;Champotón;2022-01-01;;
08;COA;Saltillo;2022-01-01;;
08;CHP;"Las Margaritas";2022-01-01;;
08;CMX;"Ciudad de México";2022-01-01;;
08;DUR;"Francisco I. Madero";2022-01-01;;
08;GUA;Moroleón;2022-01-01;;
08;HID;"Huejutla de Reyes";2022-01-01;;
08;JAL;"Tepatitlán de Morelos";2022-01-01;;
08;MEX;Metepec;2022-01-01;;
08;MIC;"Sahuayo de Morelos";2022-01-01;;
08;MOR;Tlaquiltenango;2022-01-01;;
08;NAY;"Villa Hidalgo (El Nuevo)";2022-01-01;;
08;NLE;"Ciudad Sabinas Hidalgo";2022-01-01;;
08;OAX;"Puerto Escondido";2022-01-01;;
08;PUE;"San Pedro Cholula";2022-01-01;;
08;ROO;Bacalar;2022-01-01;;
08;SIN;Quila;2022-01-01;;
08;SLP;"Salinas de Hidalgo";2022-01-01;;
08;SON;Huatabampo;2022-01-01;;
08;TAB;"Tenosique de Pino Suárez";2022-01-01;;
08;TAM;"Ciudad Río Bravo";2022-01-01;;
08;VER;"Tres Valles";2022-01-01;;
08;ZAC;"Villa Hidalgo";2022-01-01;;
09;AGU;Cosío;2022-01-01;;
09;BCS;"Villa Alberto Andrés Alvarado Arámburo";2022-01-01;;
09;CAM;Hecelchakán;2022-01-01;;
09;COA;"Nueva Rosita";2022-01-01;;
09;CHH;Madera;2022-01-01;;
09;CHP;Arriaga;2022-01-01;;
09;CMX;"Ciudad de México";2022-01-01;;
09;DUR;"Nombre de Dios";2022-01-01;;
09;GRO;"San Jerónimo de Juárez";2022-01-01;;
09;GUA;Salamanca;2022-01-01;;
09;HID;Tlaxcoapan;2022-01-01;;
09;JAL;Tlaquepaque;2022-01-01;;
09;MEX;"Naucalpan de Juárez";2022-01-01;;
09;MIC;Uruapan;2022-01-01;;
09;NAY;Ruiz;2022-01-01;;
09;NLE;"San Nicolás de los Garza";2022-01-01;;
09;OAX;"Río Grande o Piedra Parada";2022-01-01;;
09;PUE;Huauchinango;2022-01-01;;
09;SIN;Ahome;2022-01-01;;
09;SLP;Cárdenas;2022-01-01;;
09;SON;Navojoa;2022-01-01;;
09;TAB;Teapa;2022-01-01;;
09;TAM;"San Fernando";2022-01-01;;
09;VER;"Jáltipan de Morelos";2022-01-01;;
09;ZAC;Villanueva;2022-01-01;;
10;BCS;"San Ignacio";2022-01-01;;
10;COA;"San Pedro";2022-01-01;;
10;CHH;"Colonia Anáhuac";2022-01-01;;
10;CHP;Palenque;2022-01-01;;
10;CMX;"Ciudad de México";2022-01-01;;
10;DUR;"Vicente Guerrero";2022-01-01;;
10;GRO;"Ciudad Apaxtla de Castrejón";2022-01-01;;
10;GUA;"San Francisco del Rincón";2022-01-01;;
10;HID;Tizayuca;2022-01-01;;
10;JAL;Zapopan;2022-01-01;;
10;MEX;"Ciudad Nezahualcoyotl";2022-01-01;;
10;MIC;Zacapu;2022-01-01;;
10;NAY;"San Blas";2022-01-01;;
10;NLE;"Ciudad Santa Catarina";2022-01-01;;
10;PUE;"Acatlán de Osorio";2022-01-01;;
10;SIN;"Higuera de Zaragoza";2022-01-01;;
10;SLP;Cerritos;2022-01-01;;
10;SON;"Heroica Nogales";2022-01-01;;
10;TAB;Paraíso;2022-01-01;;
10;TAM;Tampico;2022-01-01;;
10;VER;Xalapa-Enríquez;2022-01-01;;
10;ZAC;"Villa de Cos";2022-01-01;;
11;BCS;"Guerrero Negro";2022-01-01;;
11;CAM;Pomuch;2022-01-01;;
11;COA;Torreón;2022-01-01;;
11;CHH;"Juan Aldama";2022-01-01;;
11;CHP;Ocosingo;2022-01-01;;
11;CMX;"Ciudad de México";2022-01-01;;
11;DUR;"El Salto";2022-01-01;;
11;GRO;"Ciudad Altamirano";2022-01-01;;
11;GUA;Silao;2022-01-01;;
11;HID;"Santiago Tulantepec";2022-01-01;;
11;JAL;"Tlajomulco de Zúñiga";2022-01-01;;
11;MEX;"Villa Nicolás Romero";2022-01-01;;
11;MIC;"Zamora de Hidalgo";2022-01-01;;
11;NAY;"Ixtlán del Río";2022-01-01;;
11;NLE;"Doctor Arroyo";2022-01-01;;
11;OAX;"Santiago Suchilquitongo";2022-01-01;;
11;PUE;Cuautlancingo;2022-01-01;;
11;SIN;Choix;2022-01-01;;
11;SLP;Tamuín;2022-01-01;;
11;SON;"Puerto Peñasco";2022-01-01;;
11;TAB;Frontera;2022-01-01;;
11;TAM;"Ciudad Victoria";2022-01-01;;
11;VER;Minatitlán;2022-01-01;;
11;ZAC;"Nochistlán de Mejía";2022-01-01;;
12;BCS;"Santa Rosalía";2022-01-01;;
12;COA;Castaños;2022-01-01;;
12;CHH;"José Mariano Jiménez";2022-01-01;;
12;CHP;Tonalá;2022-01-01;;
12;CMX;"Ciudad de México";2022-01-01;;
12;DUR;"Santa María del Oro";2022-01-01;;
12;GRO;"Buenavista de Cuellar";2022-01-01;;
12;GUA;Jerécuaro;2022-01-01;;
12;HID;Ixmiquilpan;2022-01-01;;
12;JAL;Tonalá;2022-01-01;;
12;MEX;"Tecamac de Felipe Villanueva";2022-01-01;;
12;MIC;"Heroica Zitácuaro";2022-01-01;;
12;NAY;Bucerías;2022-01-01;;
12;NLE;"Ciénega de Flores";2022-01-01;;
12;OAX;"San Felipe Jalapa de Díaz";2022-01-01;;
12;PUE;Tepeaca;2022-01-01;;
12;SIN;"Villa Unión";2022-01-01;;
12;SLP;Tamasopo;2022-01-01;;
12;SON;"Heroica Ciudad de Cananea";2022-01-01;;
12;TAB;Cunduacán;2022-01-01;;
12;TAM;González;2022-01-01;;
12;VER;Orizaba;2022-01-01;;
12;ZAC;"Víctor Rosales";2022-01-01;;
13;COA;"Francisco I. Madero (Chávez)";2022-01-01;;
13;CHH;"Manuel Ojinaga";2022-01-01;;
13;CHP;Mapastepec;2022-01-01;;
13;CMX;"Ciudad de México";2022-01-01;;
13;GRO;"Cutzamala de Pinzón";2022-01-01;;
13;GUA;"Santiago Maravatío";2022-01-01;;
13;HID;"Tepeji del Rio";2022-01-01;;
13;JAL;Tuxpan;2022-01-01;;
13;MEX;Tepotzotlán;2022-01-01;;
13;MIC;"Paracho de Verduzco";2022-01-01;;
13;NAY;"Las Varas";2022-01-01;;
13;NLE;Hualahuises;2022-01-01;;
13;OAX;"Bahias de Huatulco";2022-01-01;;
13;PUE;Tecamachalco;2022-01-01;;
13;SIN;"Sinaloa de Leyva";2022-01-01;;
13;SLP;"Ciudad del Maíz";2022-01-01;;
13;SON;Sonoita;2022-01-01;;
13;TAB;Huimanguillo;2022-01-01;;
13;TAM;Jaumave;2022-01-01;;
13;VER;"Papantla de Olarte";2022-01-01;;
13;ZAC;Valparaíso;2022-01-01;;
14;COA;"Cuatro Ciénegas de Carranza";2022-01-01;;
14;CHH;Bachíniva;2022-01-01;;
14;CHP;"Las Rosas";2022-01-01;;
14;CMX;"Ciudad de México";2022-01-01;;
14;GRO;"Coyuca de Catalán";2022-01-01;;
14;GUA;Romita;2022-01-01;;
14;HID;"Cruz Azul";2022-01-01;;
14;JAL;Tototlán;2022-01-01;;
14;MEX;"Tlalnepantla de Baz";2022-01-01;;
14;MIC;"Tangancícuaro de Arista";2022-01-01;;
14;NAY;Xalisco;2022-01-01;;
14;OAX;"Putla Villa de Guerrero";2022-01-01;;
14;PUE;Zacatlán;2022-01-01;;
14;SIN;Mocorito;2022-01-01;;
14;SLP;Cedral;2022-01-01;;
14;SON;"Magdalena de Kino";2022-01-01;;
14;TAM;"Ciudad Gustavo Díaz Ordaz";2022-01-01;;
14;VER;"Poza Rica de Hidalgo";2022-01-01;;
14;ZAC;"Luis Moya";2022-01-01;;
15;COA;Nadadores;2022-01-01;;
15;CHH;Saucillo;2022-01-01;;
15;CHP;"Chiapa de Corzo";2022-01-01;;
15;CMX;"Ciudad de México";2022-01-01;;
15;GRO;"Tierra Colorada";2022-01-01;;
15;GUA;Tarandacuao;2022-01-01;;
15;HID;Tepeapulco;2022-01-01;;
15;JAL;"San Diego de Alejandría";2022-01-01;;
15;MEX;"Santa Maria Tultepec";2022-01-01;;
15;MIC;"Maravatío de Ocampo";2022-01-01;;
15;NAY;"San pedro Lagunillas";2022-01-01;;
15;NLE;"Cadereyta Jiménez";2022-01-01;;
15;OAX;Cosolapa;2022-01-01;;
15;PUE;Xicotepec;2022-01-01;;
15;SIN;Angostura;2022-01-01;;
15;SLP;"Tierra Nueva";2022-01-01;;
15;TAM;"Estación Manuel (Úrsulo Galván)";2022-01-01;;
15;VER;"San Andrés Tuxtla";2022-01-01;;
15;ZAC;"Moyahua de Estrada";2022-01-01;;
16;COA;"Ramos Arizpe";2022-01-01;;
16;CHP;Cacahoatán;2022-01-01;;
16;CMX;"Ciudad de México";2022-01-01;;
16;GRO;"Coyuca de Benítez";2022-01-01;;
16;GUA;Huanímaro;2022-01-01;;
16;JAL;"La Resolana";2022-01-01;;
16;MEX;"Tultitlán de Mariano Escobedo";2022-01-01;;
16;MIC;"Zinapécuaro de Figueroa";2022-01-01;;
16;NAY;"La peñita de Jaltemba";2022-01-01;;
16;OAX;"Tlacolula de Matamoros";2022-01-01;;
16;PUE;"Ciudad Serdán";2022-01-01;;
16;SIN;"San Blas";2022-01-01;;
16;SLP;"Villa de Reyes";2022-01-01;;
16;TAM;Xicoténcatl;2022-01-01;;
16;VER;"Túxpam de Rodríguez Cano";2022-01-01;;
16;ZAC;Sombrerete;2022-01-01;;
17;COA;Nava;2022-01-01;;
17;CHP;"Ocozocoautla de Espinosa";2022-01-01;;
17;GRO;Olinalá;2022-01-01;;
17;GUA;Comonfort;2022-01-01;;
17;JAL;"Atotonilco el Alto";2022-01-01;;
17;MEX;Cuautitlán;2022-01-01;;
17;MIC;Puruándiro;2022-01-01;;
17;NAY;Jala;2022-01-01;;
17;NLE;Santiago;2022-01-01;;
17;OAX;"San Pablo Villa de Mitla";2022-01-01;;
17;PUE;Amozoc;2022-01-01;;
17;SIN;"La Cruz";2022-01-01;;
17;SLP;"Fracción el Refugio";2022-01-01;;
17;TAM;"Ciudad Miguel Alemán";2022-01-01;;
17;VER;Veracruz;2022-01-01;;
17;ZAC;Jalpa;2022-01-01;;
18;COA;Zaragoza;2022-01-01;;
18;CHP;"Cintalapa de Figueroa";2022-01-01;;
18;GRO;Marquelia;2022-01-01;;
18;GUA;Uriangato;2022-01-01;;
18;JAL;Jalostotitlán;2022-01-01;;
18;MEX;Ixtapaluca;2022-01-01;;
18;MIC;Yurécuaro;2022-01-01;;
18;NAY;Ahuacatlán;2022-01-01;;
18;NLE;"El cercado";2022-01-01;;
18;OAX;Natividad;2022-01-01;;
18;SIN;"El rosario";2022-01-01;;
18;SLP;Tamazunchale;2022-01-01;;
18;TAM;"Soto la Marina";2022-01-01;;
18;VER;"Tierra Blanca";2022-01-01;;
18;ZAC;Loreto;2022-01-01;;
19;COA;"San Buenaventura";2022-01-01;;
19;CHP;Pichucalco;2022-01-01;;
19;GRO;"Zumpango del Río";2022-01-01;;
19;GUA;Pénjamo;2022-01-01;;
19;JAL;Poncitlán;2022-01-01;;
19;MEX;"Texcoco de Mora";2022-01-01;;
19;MIC;"Huetamo de Núñez";2022-01-01;;
19;OAX;"Teotitlán de Flores Magón";2022-01-01;;
19;SIN;"Estación Naranjo";2022-01-01;;
19;SLP;"Santa María del Río";2022-01-01;;
19;TAM;"Ciudad Tula";2022-01-01;;
19;VER;Cosamaloapan;2022-01-01;;
19;ZAC;"Juan Aldama";2022-01-01;;
20;COA;"Ciudad Melchor Múzquiz";2022-01-01;;
20;CHP;"Puerto Madero (San Benito)";2022-01-01;;
20;GRO;"San Luis de la Loma";2022-01-01;;
20;GUA;Cuerámaro;2022-01-01;;
20;JAL;Arandas;2022-01-01;;
20;MEX;"Toluca de Lerdo";2022-01-01;;
20;MIC;"Tacámbaro de Codallos";2022-01-01;;
20;NLE;Anáhuac;2022-01-01;;
20;OAX;"Santa María Huatulco";2022-01-01;;
20;SIN;Aguaruto;2022-01-01;;
20;SLP;"El Naranjo";2022-01-01;;
20;TAM;"Nueva Ciudad Guerrero";2022-01-01;;
20;VER;"Carlos A. Carrillo";2022-01-01;;
21;COA;Viesca;2022-01-01;;
21;CHP;Pijijiapan;2022-01-01;;
21;GRO;Petatlán;2022-01-01;;
21;GUA;"Empalme Escobedo (Escobedo)";2022-01-01;;
21;JAL;"Talpa de Allende";2022-01-01;;
21;MEX;"Valle de Chalco Solidaridad";2022-01-01;;
21;MIC;"Ciudad Lázaro Cárdenas";2022-01-01;;
21;NLE;García;2022-01-01;;
21;OAX;"San Juan Bautista Cuicatlán";2022-01-01;;
21;SIN;Cosalá;2022-01-01;;
21;TAM;"Valle Hermoso";2022-01-01;;
21;VER;Pánuco;2022-01-01;;
22;COA;Morelos;2022-01-01;;
22;CHP;Reforma;2022-01-01;;
22;GRO;"La Unión";2022-01-01;;
22;GUA;"San Luis de la Paz";2022-01-01;;
22;JAL;Etzatlán;2022-01-01;;
22;MEX;"Tejupilco de Hidalgo";2022-01-01;;
22;MIC;"Las Guacamayas";2022-01-01;;
22;NLE;"Ciudad Benito Juárez";2022-01-01;;
22;OAX;"Villa Sola de Vega";2022-01-01;;
22;SIN;"San Ignacio";2022-01-01;;
22;VER;"Tampico Alto";2022-01-01;;
23;COA;Arteaga;2022-01-01;;
23;CHP;Huixtla;2022-01-01;;
23;GRO;"San Luis San Pedro";2022-01-01;;
23;GUA;"Valle de Santiago";2022-01-01;;
23;JAL;Sayula;2022-01-01;;
23;MEX;"Chalco de Díaz Covarrubias";2022-01-01;;
23;MIC;"Jiquilpan de Juárez";2022-01-01;;
23;OAX;"Ocotlán de Morelos";2022-01-01;;
23;SIN;Topolobampo;2022-01-01;;
23;VER;"Tempoal de Sánchez";2022-01-01;;
24;COA;Allende;2022-01-01;;
24;CHP;"Motozintla de Mendoza";2022-01-01;;
24;GRO;Teloloapan;2022-01-01;;
24;GUA;Abasolo;2022-01-01;;
24;JAL;"Ahualulco de Mercado";2022-01-01;;
24;MEX;Amatepec;2022-01-01;;
24;MIC;Tuxpan;2022-01-01;;
24;OAX;"Villa de Zaachila";2022-01-01;;
24;SIN;"Lic. Benito Juárez (Campo Gobierno)";2022-01-01;;
24;VER;Tantoyuca;2022-01-01;;
25;CHP;Acala;2022-01-01;;
25;GRO;"Técpan de Galeana";2022-01-01;;
25;GUA;"Rincón de Tamayo";2022-01-01;;
25;JAL;"Autlán de Navarro";2022-01-01;;
25;MIC;"Cotija de la Paz";2022-01-01;;
25;OAX;"Miahuatlán de Porfirio Díaz";2022-01-01;;
25;VER;"Gutiérrez Zamora";2022-01-01;;
26;GRO;Huitzuco;2022-01-01;;
26;GUA;Villagrán;2022-01-01;;
26;JAL;Magdalena;2022-01-01;;
26;MEX;"Melchor Ocampo";2022-01-01;;
26;MIC;"Nueva Italia de Ruiz";2022-01-01;;
26;OAX;"Unión Hidalgo";2022-01-01;;
26;VER;"Platón Sánchez";2022-01-01;;
27;GRO;"Tixtla de Guerrero";2022-01-01;;
27;GUA;Yuriria;2022-01-01;;
27;JAL;"San Julián";2022-01-01;;
27;MEX;"San Vicente Chicoloapan de Juárez";2022-01-01;;
27;MIC;"Cuitzeo del Porvenir";2022-01-01;;
27;OAX;"El Camarón";2022-01-01;;
27;VER;"Juan Rodríguez Clara";2022-01-01;;
28;GRO;"Tepecoacuilco de Trujano";2022-01-01;;
28;GUA;"Apaseo el Grande";2022-01-01;;
28;JAL;Cocula;2022-01-01;;
28;MEX;Capulhuac;2022-01-01;;
28;OAX;"San Pedro Mixtepec -Dto. 22-";2022-01-01;;
28;VER;"Huatusco de Chicuellar";2022-01-01;;
29;GRO;"San Marcos";2022-01-01;;
29;GUA;"Purísima de Bustos";2022-01-01;;
29;JAL;"El Grullo";2022-01-01;;
29;MEX;"Juchitepec de Mariano Riva Palacio";2022-01-01;;
29;OAX;"Santa Cruz Itundujia";2022-01-01;;
29;VER;Ixtaczoquitlán;2022-01-01;;
30;GRO;Azoyú;2022-01-01;;
30;GUA;Salvatierra;2022-01-01;;
30;JAL;"San Miguel el Alto";2022-01-01;;
30;MEX;Tequixquiac;2022-01-01;;
30;OAX;Chahuites;2022-01-01;;
30;VER;"Río Blanco";2022-01-01;;
31;GRO;Tlapehuala;2022-01-01;;
31;GUA;Marfil;2022-01-01;;
31;JAL;Tala;2022-01-01;;
31;MEX;Xonacatlán;2022-01-01;;
31;OAX;"Heroica Ciudad de Ejutla de Crespo";2022-01-01;;
31;VER;Isla;2022-01-01;;
32;GRO;"San Luis Acatlán";2022-01-01;;
32;GUA;"San José Iturbide";2022-01-01;;
32;JAL;"La Barca";2022-01-01;;
32;MEX;"San Mateo Atenco";2022-01-01;;
32;OAX;"San Pedro Tapanatepec";2022-01-01;;
32;VER;Cuitláhuac;2022-01-01;;
33;GRO;"Chilapa de Álvarez";2022-01-01;;
33;GUA;"Apaseo el Alto";2022-01-01;;
33;JAL;Jamay;2022-01-01;;
33;OAX;"Vicente Camalote";2022-01-01;;
33;VER;"Fortín de las Flores";2022-01-01;;
34;GRO;"Tlapa de Comonfort";2022-01-01;;
34;GUA;"Ciudad Manuel Doblado";2022-01-01;;
34;JAL;"Yahualica de González Gallo";2022-01-01;;
34;OAX;"Villa de Tamazulápam del Progreso";2022-01-01;;
34;VER;Alvarado;2022-01-01;;
35;GRO;Tlalixtaquilla;2022-01-01;;
35;GUA;"Jaral del Progreso";2022-01-01;;
35;JAL;Colotlán;2022-01-01;;
35;OAX;"San Juan Bautista lo de Soto";2022-01-01;;
35;VER;"José Cardel";2022-01-01;;
36;GRO;Cuajinicuilapa;2022-01-01;;
36;GUA;"San Diego de la Unión";2022-01-01;;
36;JAL;Cihuatlán;2022-01-01;;
36;MEX;Chiconcuac;2022-01-01;;
36;OAX;"San Juan Cacahuatepec";2022-01-01;;
36;VER;Banderilla;2022-01-01;;
37;GRO;Huamuxtitlán;2022-01-01;;
37;GUA;"Santa Cruz Juventino Rosas";2022-01-01;;
37;JAL;Zapotiltic;2022-01-01;;
37;OAX;"San Pedro Totolapa";2022-01-01;;
37;VER;"Paraje Nuevo";2022-01-01;;
38;GRO;"Cruz Grande";2022-01-01;;
38;GUA;"Doctor Mora";2022-01-01;;
38;JAL;"Villa Corona";2022-01-01;;
38;OAX;"San Miguel el Grande";2022-01-01;;
38;VER;"Playa Vicente";2022-01-01;;
39;GRO;Ocotito;2022-01-01;;
39;GUA;"Dolores Hgo. Cuna de la Indep. Nal.";2022-01-01;;
39;JAL;Teocaltiche;2022-01-01;;
39;MEX;"Almoloya de Juárez";2022-01-01;;
39;OAX;"Zimatlán de Álvarez";2022-01-01;;
39;VER;Altotonga;2022-01-01;;
40;GRO;Copala;2022-01-01;;
40;MEX;Ocoyoacac;2022-01-01;;
40;OAX;"San Pablo Huitzo";2022-01-01;;
40;VER;"Juan Díaz Covarrubias";2022-01-01;;
41;GRO;Zihuatanejo;2022-01-01;;
41;JAL;Tequila;2022-01-01;;
41;MEX;Zumpango;2022-01-01;;
41;OAX;"San Francisco Telixtlahuaca";2022-01-01;;
41;VER;Cuichapa;2022-01-01;;
42;JAL;"El Quince (San José el Quince)";2022-01-01;;
42;OAX;"Mariscala de Juárez";2022-01-01;;
42;VER;"Santiago Tuxtla";2022-01-01;;
43;JAL;"San José el Verde (El Verde)";2022-01-01;;
43;OAX;"Santiago Pinotepa Nacional";2022-01-01;;
43;VER;Huayacocotla;2022-01-01;;
44;JAL;Jocotepec;2022-01-01;;
44;OAX;"Santiago Jamiltepec";2022-01-01;;
44;VER;"Paso de Ovejas";2022-01-01;;
45;JAL;Tecalitlán;2022-01-01;;
45;OAX;"San Pedro Pochutla";2022-01-01;;
45;VER;Catemaco;2022-01-01;;
46;JAL;Chapala;2022-01-01;;
46;OAX;"Heroica Ciudad de Tlaxiaco";2022-01-01;;
46;VER;Nogales;2022-01-01;;
47;JAL;Ajijic;2022-01-01;;
47;OAX;"San Juan Bautista Valle Nacional";2022-01-01;;
47;VER;"Las Choapas";2022-01-01;;
48;JAL;"San Ignacio Cerro Gordo";2022-01-01;;
48;OAX;Lagunas;2022-01-01;;
48;VER;"General Miguel Alemán (Potrero Nuevo)";2022-01-01;;
49;JAL;"Zacoalco de Torres";2022-01-01;;
49;OAX;"Ciudad Ixtepec";2022-01-01;;
49;VER;Coatzintla;2022-01-01;;
50;JAL;"Huejuquilla el Alto";2022-01-01;;
50;OAX;"Santiago Juxtlahuaca";2022-01-01;;
50;VER;"Ángel R. Cabada";2022-01-01;;
51;JAL;"Villa Hidalgo";2022-01-01;;
51;OAX;"San Sebastián Tecomaxtlahuaca";2022-01-01;;
51;VER;"San Rafael";2022-01-01;;
52;JAL;"Unión de San Antonio";2022-01-01;;
52;OAX;"Asunción Nochixtlán";2022-01-01;;
52;VER;Tlacojalpan;2022-01-01;;
53;JAL;"Las Pintitas";2022-01-01;;
53;OAX;"San Francisco Ixhuatán";2022-01-01;;
53;VER;Cosoleacaque;2022-01-01;;
54;JAL;"Tamazula de Gordiano";2022-01-01;;
54;OAX;"San Blas Atempa";2022-01-01;;
54;VER;"Lerdo de Tejada";2022-01-01;;
55;JAL;"Acatlán de Juárez";2022-01-01;;
55;OAX;"Santo Domingo Tehuantepec";2022-01-01;;
55;VER;Tihuatlán;2022-01-01;;
56;JAL;"Valle de Guadalupe";2022-01-01;;
56;OAX;"Cuilápam de Guerrero";2022-01-01;;
56;VER;Atoyac;2022-01-01;;
57;OAX;"El Rosario";2022-01-01;;
57;VER;"Huiloapan de Cuauhtémoc";2022-01-01;;
58;OAX;"Santa Lucia del Camino";2022-01-01;;
58;VER;"Cazones de Herrera";2022-01-01;;
59;OAX;"San Antonio de la Cal";2022-01-01;;
59;VER;Yecuatla;2022-01-01;;
60;VER;"Soledad de Doblado";2022-01-01;;
61;VER;"Cerro Azul";2022-01-01;;
62;VER;Tezonapa;2022-01-01;;
66;VER;Sihuapan;2022-01-01;;
67;VER;"El Higo";2022-01-01;;
68;VER;"Paso del Macho";2022-01-01;;
69;VER;Tlapacoyan;2022-01-01;;
1 01 AGU Aguascalientes 2022-01-01
2 01 BCN Ensenada 2022-01-01
3 01 BCS Ciudad Constitución 2022-01-01
4 01 CAM San Francisco de Campeche 2022-01-01
5 01 COA Ciudad Acuña 2022-01-01
6 01 COL Colima 2022-01-01
7 01 CHH Santa Rosalía de Camargo 2022-01-01
8 01 CHP Comitán de Domínguez 2022-01-01
9 01 CMX Ciudad de México 2022-01-01
10 01 DUR Victoria de Durango 2022-01-01
11 01 GRO Acapulco de Juárez 2022-01-01
12 01 GUA Acámbaro 2022-01-01
13 01 HID Actopan 2022-01-01
14 01 JAL Ameca 2022-01-01
15 01 MEX Ciudad Adolfo López Mateos 2022-01-01
16 01 MIC Apatzingán de la Constitución 2022-01-01
17 01 MOR Cuautla (Cuautla de Morelos) 2022-01-01
18 01 NAY Santiago Ixcuintla 2022-01-01
19 01 NLE Ciudad Apodaca 2022-01-01
20 01 OAX Juchitán (Juchitán de Zaragoza) 2022-01-01
21 01 PUE Atlixco 2022-01-01
22 01 QUE Querétaro 2022-01-01
23 01 ROO Cancún 2022-01-01
24 01 SIN Los Mochis 2022-01-01
25 01 SLP Ciudad Valles 2022-01-01
26 01 SON San Luis Río Colorado 2022-01-01
27 01 TAB Cárdenas 2022-01-01
28 01 TAM Altamira 2022-01-01
29 01 TLA Apizaco 2022-01-01
30 01 VER Acayucan 2022-01-01
31 01 YUC Mérida 2022-01-01
32 01 ZAC Fresnillo 2022-01-01
33 02 AGU Calvillo 2022-01-01
34 02 BCN Mexicali 2022-01-01
35 02 BCS La Paz 2022-01-01
36 02 CAM Ciudad del Carmen 2022-01-01
37 02 COA Frontera 2022-01-01
38 02 COL Manzanillo 2022-01-01
39 02 CHH Chihuahua 2022-01-01
40 02 CHP San Cristóbal de las Casas 2022-01-01
41 02 CMX Ciudad de México 2022-01-01
42 02 DUR Gómez Palacio 2022-01-01
43 02 GRO Chilpancingo de los Bravo 2022-01-01
44 02 GUA San miguel de Allende 2022-01-01
45 02 HID Apan 2022-01-01
46 02 JAL Ciudad Guzmán 2022-01-01
47 02 MEX Chimalhuacán 2022-01-01
48 02 MIC Los Reyes de Salgado 2022-01-01
49 02 MOR Cuernavaca 2022-01-01
50 02 NAY Tepic 2022-01-01
51 02 NLE San Pedro Garza García 2022-01-01
52 02 OAX Oaxaca de Juárez 2022-01-01
53 02 PUE Izúcar de Matamoros 2022-01-01
54 02 QUE San Juan del Rio 2022-01-01
55 02 ROO Cozumel 2022-01-01
56 02 SIN Culiacán Rosales 2022-01-01
57 02 SLP Ébano 2022-01-01
58 02 SON Agua Prieta 2022-01-01
59 02 TAB Villahermosa 2022-01-01
60 02 TAM Ciudad Camargo 2022-01-01
61 02 TLA Villa Vicente Guerrero 2022-01-01
62 02 VER Naranjos 2022-01-01
63 02 YUC Tizimín 2022-01-01
64 02 ZAC Jerez de García Salinas 2022-01-01
65 03 AGU San Francisco de los Romo 2022-01-01
66 03 BCN Tecate 2022-01-01
67 03 BCS Cabo San Lucas 2022-01-01
68 03 CAM Calkiní 2022-01-01
69 03 COA Matamoros 2022-01-01
70 03 COL Tecoman 2022-01-01
71 03 CHH Cuauhtémoc 2022-01-01
72 03 CHP Tapachula de Córdova y Ordóñez 2022-01-01
73 03 CMX Ciudad de México 2022-01-01
74 03 DUR Ciudad Lerdo 2022-01-01
75 03 GRO Iguala de la Independencia 2022-01-01
76 03 GUA Celaya 2022-01-01
77 03 HID Pachuca de Soto 2022-01-01
78 03 JAL Guadalajara 2022-01-01
79 03 MEX Coacalco de Berriozabal 2022-01-01
80 03 MIC Ciudad Hidalgo 2022-01-01
81 03 MOR Galeana 2022-01-01
82 03 NAY Tuxpan 2022-01-01
83 03 NLE Ciudad General Escobedo 2022-01-01
84 03 OAX Salina Cruz 2022-01-01
85 03 PUE Puebla (Heroica Puebla) 2022-01-01
86 03 ROO Felipe Carrillo Puerto 2022-01-01
87 03 SIN Escuinapa de Hidalgo 2022-01-01
88 03 SLP Matehuala 2022-01-01
89 03 SON Heroica Caborca 2022-01-01
90 03 TAB Comalcalco 2022-01-01
91 03 TAM Ciudad Madero 2022-01-01
92 03 TLA Tlaxcala (Tlaxcala de Xicotencatl) 2022-01-01
93 03 VER Boca del RÍo 2022-01-01
94 03 YUC Ticul 2022-01-01
95 03 ZAC Zacatecas 2022-01-01
96 04 AGU Jesús María 2022-01-01
97 04 BCN Tijuana 2022-01-01
98 04 BCS San José del Cabo 2022-01-01
99 04 CAM Candelaria 2022-01-01
100 04 COA Monclova 2022-01-01
101 04 COL Ciudad de Villa de Álvarez 2022-01-01
102 04 CHH Delicias 2022-01-01
103 04 CHP Tuxtla Gutiérrez 2022-01-01
104 04 CMX Ciudad de México 2022-01-01
105 04 DUR Santiago Papasquiaro 2022-01-01
106 04 GRO Taxco de Alarcón 2022-01-01
107 04 GUA Cortazar 2022-01-01
108 04 HID Cd. de Fray Bernardino de Sahagún 2022-01-01
109 04 JAL Lagos de Moreno 2022-01-01
110 04 MEX Cuautitlán Izcalli 2022-01-01
111 04 MIC Jacona de Plancarte 2022-01-01
112 04 MOR Jojutla 2022-01-01
113 04 NAY Acaponeta 2022-01-01
114 04 NLE Guadalupe 2022-01-01
115 04 OAX San Juan Bautista Tuxtepec 2022-01-01
116 04 PUE San Martín Texmelucan de Labastida 2022-01-01
117 04 QUE El Pueblito 2022-01-01
118 04 ROO Chetumal 2022-01-01
119 04 SIN Guasave 2022-01-01
120 04 SLP Rioverde 2022-01-01
121 04 SON Ciudad Obregón 2022-01-01
122 04 TAB Emiliano Zapata 2022-01-01
123 04 TAM Ciudad Mante 2022-01-01
124 04 TLA Huamantla 2022-01-01
125 04 VER Coatepec 2022-01-01
126 04 YUC Motul de Carrillo Puerto 2022-01-01
127 04 ZAC Guadalupe 2022-01-01
128 05 AGU Pabellón de Arteaga 2022-01-01
129 05 BCN Playas de Rosarito 2022-01-01
130 05 BCS Loreto 2022-01-01
131 05 CAM Escárcega 2022-01-01
132 05 COA Parras de la Fuente 2022-01-01
133 05 COL Ciudad de Armería 2022-01-01
134 05 CHH Hidalgo del Parral 2022-01-01
135 05 CHP Venustiano Carranza 2022-01-01
136 05 CMX Ciudad de México 2022-01-01
137 05 DUR Canatlán 2022-01-01
138 05 GRO Arcelia 2022-01-01
139 05 GUA Guanajuato 2022-01-01
140 05 HID Tula de Allende 2022-01-01
141 05 JAL Ocotlán 2022-01-01
142 05 MEX Ecatepec de Morelos 2022-01-01
143 05 MIC La piedad de Cabadas 2022-01-01
144 05 MOR Puente de Ixtla 2022-01-01
145 05 NAY Tecuala 2022-01-01
146 05 NLE Linares 2022-01-01
147 05 OAX Matías Romero Avendaño 2022-01-01
148 05 PUE Tehuacan 2022-01-01
149 05 ROO Playa del Carmen 2022-01-01
150 05 SIN Mazatlán 2022-01-01
151 05 SLP San Luis Potosí 2022-01-01
152 05 SON Empalme 2022-01-01
153 05 TAB Jalpa de Méndez 2022-01-01
154 05 TAM Heroica Matamoros 2022-01-01
155 05 TLA Calpulalpan 2022-01-01
156 05 VER Agua dulce 2022-01-01
157 05 YUC Valladolid 2022-01-01
158 05 ZAC Río Grande 2022-01-01
159 06 AGU Rincón de Romos 2022-01-01
160 06 BCN Rodolfo Sánchez T. (Maneadero) 2022-01-01
161 06 BCS Puerto Adolfo López Mateos 2022-01-01
162 06 CAM Sabancuy 2022-01-01
163 06 COA Piedras Negras 2022-01-01
164 06 CHH Juárez 2022-01-01
165 06 CHP Jiquipilas 2022-01-01
166 06 CMX Ciudad de México 2022-01-01
167 06 DUR San Juan del Río del Centauro del Norte 2022-01-01
168 06 GRO Ayutla de los Libres 2022-01-01
169 06 GUA Irapuato 2022-01-01
170 06 HID Tulancingo 2022-01-01
171 06 JAL Puerto Vallarta 2022-01-01
172 06 MEX Huixquilucan de Degollado 2022-01-01
173 06 MIC Morelia 2022-01-01
174 06 MOR Santa Rosa Treinta 2022-01-01
175 06 NAY Compostela 2022-01-01
176 06 NLE Montemorelos 2022-01-01
177 06 OAX Heroica Ciudad de Huajuapan de León 2022-01-01
178 06 PUE Teziutlan 2022-01-01
179 06 ROO Kantunilkin 2022-01-01
180 06 SIN Guamúchil 2022-01-01
181 06 SLP Soledad de Graciano Sánchez 2022-01-01
182 06 SON Heroica Guaymas 2022-01-01
183 06 TAM Nuevo Laredo 2022-01-01
184 06 TLA Chiautempan 2022-01-01
185 06 VER Coatzacoalcos 2022-01-01
186 06 YUC Kanasín 2022-01-01
187 06 ZAC Ciudad Cuauhtémoc 2022-01-01
188 07 AGU Asientos 2022-01-01
189 07 BCN San Felipe 2022-01-01
190 07 BCS Todos Santos 2022-01-01
191 07 CAM Hopelchén 2022-01-01
192 07 COA Sabinas 2022-01-01
193 07 CHH Nuevo Casas Grandes 2022-01-01
194 07 CHP Villaflores 2022-01-01
195 07 CMX Ciudad de México 2022-01-01
196 07 DUR Peñón Blanco 2022-01-01
197 07 GRO Atoyac de Álvarez 2022-01-01
198 07 GUA León de los Aldama 2022-01-01
199 07 HID Zimapan 2022-01-01
200 07 JAL San Juan de los Lagos 2022-01-01
201 07 MEX Los Reyes Acaquilpan (La Paz) 2022-01-01
202 07 MIC Pátzcuaro 2022-01-01
203 07 MOR Zacatepec de Hidalgo 2022-01-01
204 07 NAY Francisco I. Madero (Puga) 2022-01-01
205 07 NLE Monterrey 2022-01-01
206 07 OAX Loma Bonita 2022-01-01
207 07 PUE San Andrés Cholula 2022-01-01
208 07 ROO Isla Mujeres 2022-01-01
209 07 SIN Navolato 2022-01-01
210 07 SLP Charcas 2022-01-01
211 07 SON Hermosillo 2022-01-01
212 07 TAB Macuspana 2022-01-01
213 07 TAM Reynosa 2022-01-01
214 07 VER Córdoba 2022-01-01
215 07 ZAC Ojocaliente 2022-01-01
216 08 AGU Tepezalá 2022-01-01
217 08 BCS Heroica Mulegé 2022-01-01
218 08 CAM Champotón 2022-01-01
219 08 COA Saltillo 2022-01-01
220 08 CHP Las Margaritas 2022-01-01
221 08 CMX Ciudad de México 2022-01-01
222 08 DUR Francisco I. Madero 2022-01-01
223 08 GUA Moroleón 2022-01-01
224 08 HID Huejutla de Reyes 2022-01-01
225 08 JAL Tepatitlán de Morelos 2022-01-01
226 08 MEX Metepec 2022-01-01
227 08 MIC Sahuayo de Morelos 2022-01-01
228 08 MOR Tlaquiltenango 2022-01-01
229 08 NAY Villa Hidalgo (El Nuevo) 2022-01-01
230 08 NLE Ciudad Sabinas Hidalgo 2022-01-01
231 08 OAX Puerto Escondido 2022-01-01
232 08 PUE San Pedro Cholula 2022-01-01
233 08 ROO Bacalar 2022-01-01
234 08 SIN Quila 2022-01-01
235 08 SLP Salinas de Hidalgo 2022-01-01
236 08 SON Huatabampo 2022-01-01
237 08 TAB Tenosique de Pino Suárez 2022-01-01
238 08 TAM Ciudad Río Bravo 2022-01-01
239 08 VER Tres Valles 2022-01-01
240 08 ZAC Villa Hidalgo 2022-01-01
241 09 AGU Cosío 2022-01-01
242 09 BCS Villa Alberto Andrés Alvarado Arámburo 2022-01-01
243 09 CAM Hecelchakán 2022-01-01
244 09 COA Nueva Rosita 2022-01-01
245 09 CHH Madera 2022-01-01
246 09 CHP Arriaga 2022-01-01
247 09 CMX Ciudad de México 2022-01-01
248 09 DUR Nombre de Dios 2022-01-01
249 09 GRO San Jerónimo de Juárez 2022-01-01
250 09 GUA Salamanca 2022-01-01
251 09 HID Tlaxcoapan 2022-01-01
252 09 JAL Tlaquepaque 2022-01-01
253 09 MEX Naucalpan de Juárez 2022-01-01
254 09 MIC Uruapan 2022-01-01
255 09 NAY Ruiz 2022-01-01
256 09 NLE San Nicolás de los Garza 2022-01-01
257 09 OAX Río Grande o Piedra Parada 2022-01-01
258 09 PUE Huauchinango 2022-01-01
259 09 SIN Ahome 2022-01-01
260 09 SLP Cárdenas 2022-01-01
261 09 SON Navojoa 2022-01-01
262 09 TAB Teapa 2022-01-01
263 09 TAM San Fernando 2022-01-01
264 09 VER Jáltipan de Morelos 2022-01-01
265 09 ZAC Villanueva 2022-01-01
266 10 BCS San Ignacio 2022-01-01
267 10 COA San Pedro 2022-01-01
268 10 CHH Colonia Anáhuac 2022-01-01
269 10 CHP Palenque 2022-01-01
270 10 CMX Ciudad de México 2022-01-01
271 10 DUR Vicente Guerrero 2022-01-01
272 10 GRO Ciudad Apaxtla de Castrejón 2022-01-01
273 10 GUA San Francisco del Rincón 2022-01-01
274 10 HID Tizayuca 2022-01-01
275 10 JAL Zapopan 2022-01-01
276 10 MEX Ciudad Nezahualcoyotl 2022-01-01
277 10 MIC Zacapu 2022-01-01
278 10 NAY San Blas 2022-01-01
279 10 NLE Ciudad Santa Catarina 2022-01-01
280 10 PUE Acatlán de Osorio 2022-01-01
281 10 SIN Higuera de Zaragoza 2022-01-01
282 10 SLP Cerritos 2022-01-01
283 10 SON Heroica Nogales 2022-01-01
284 10 TAB Paraíso 2022-01-01
285 10 TAM Tampico 2022-01-01
286 10 VER Xalapa-Enríquez 2022-01-01
287 10 ZAC Villa de Cos 2022-01-01
288 11 BCS Guerrero Negro 2022-01-01
289 11 CAM Pomuch 2022-01-01
290 11 COA Torreón 2022-01-01
291 11 CHH Juan Aldama 2022-01-01
292 11 CHP Ocosingo 2022-01-01
293 11 CMX Ciudad de México 2022-01-01
294 11 DUR El Salto 2022-01-01
295 11 GRO Ciudad Altamirano 2022-01-01
296 11 GUA Silao 2022-01-01
297 11 HID Santiago Tulantepec 2022-01-01
298 11 JAL Tlajomulco de Zúñiga 2022-01-01
299 11 MEX Villa Nicolás Romero 2022-01-01
300 11 MIC Zamora de Hidalgo 2022-01-01
301 11 NAY Ixtlán del Río 2022-01-01
302 11 NLE Doctor Arroyo 2022-01-01
303 11 OAX Santiago Suchilquitongo 2022-01-01
304 11 PUE Cuautlancingo 2022-01-01
305 11 SIN Choix 2022-01-01
306 11 SLP Tamuín 2022-01-01
307 11 SON Puerto Peñasco 2022-01-01
308 11 TAB Frontera 2022-01-01
309 11 TAM Ciudad Victoria 2022-01-01
310 11 VER Minatitlán 2022-01-01
311 11 ZAC Nochistlán de Mejía 2022-01-01
312 12 BCS Santa Rosalía 2022-01-01
313 12 COA Castaños 2022-01-01
314 12 CHH José Mariano Jiménez 2022-01-01
315 12 CHP Tonalá 2022-01-01
316 12 CMX Ciudad de México 2022-01-01
317 12 DUR Santa María del Oro 2022-01-01
318 12 GRO Buenavista de Cuellar 2022-01-01
319 12 GUA Jerécuaro 2022-01-01
320 12 HID Ixmiquilpan 2022-01-01
321 12 JAL Tonalá 2022-01-01
322 12 MEX Tecamac de Felipe Villanueva 2022-01-01
323 12 MIC Heroica Zitácuaro 2022-01-01
324 12 NAY Bucerías 2022-01-01
325 12 NLE Ciénega de Flores 2022-01-01
326 12 OAX San Felipe Jalapa de Díaz 2022-01-01
327 12 PUE Tepeaca 2022-01-01
328 12 SIN Villa Unión 2022-01-01
329 12 SLP Tamasopo 2022-01-01
330 12 SON Heroica Ciudad de Cananea 2022-01-01
331 12 TAB Cunduacán 2022-01-01
332 12 TAM González 2022-01-01
333 12 VER Orizaba 2022-01-01
334 12 ZAC Víctor Rosales 2022-01-01
335 13 COA Francisco I. Madero (Chávez) 2022-01-01
336 13 CHH Manuel Ojinaga 2022-01-01
337 13 CHP Mapastepec 2022-01-01
338 13 CMX Ciudad de México 2022-01-01
339 13 GRO Cutzamala de Pinzón 2022-01-01
340 13 GUA Santiago Maravatío 2022-01-01
341 13 HID Tepeji del Rio 2022-01-01
342 13 JAL Tuxpan 2022-01-01
343 13 MEX Tepotzotlán 2022-01-01
344 13 MIC Paracho de Verduzco 2022-01-01
345 13 NAY Las Varas 2022-01-01
346 13 NLE Hualahuises 2022-01-01
347 13 OAX Bahias de Huatulco 2022-01-01
348 13 PUE Tecamachalco 2022-01-01
349 13 SIN Sinaloa de Leyva 2022-01-01
350 13 SLP Ciudad del Maíz 2022-01-01
351 13 SON Sonoita 2022-01-01
352 13 TAB Huimanguillo 2022-01-01
353 13 TAM Jaumave 2022-01-01
354 13 VER Papantla de Olarte 2022-01-01
355 13 ZAC Valparaíso 2022-01-01
356 14 COA Cuatro Ciénegas de Carranza 2022-01-01
357 14 CHH Bachíniva 2022-01-01
358 14 CHP Las Rosas 2022-01-01
359 14 CMX Ciudad de México 2022-01-01
360 14 GRO Coyuca de Catalán 2022-01-01
361 14 GUA Romita 2022-01-01
362 14 HID Cruz Azul 2022-01-01
363 14 JAL Tototlán 2022-01-01
364 14 MEX Tlalnepantla de Baz 2022-01-01
365 14 MIC Tangancícuaro de Arista 2022-01-01
366 14 NAY Xalisco 2022-01-01
367 14 OAX Putla Villa de Guerrero 2022-01-01
368 14 PUE Zacatlán 2022-01-01
369 14 SIN Mocorito 2022-01-01
370 14 SLP Cedral 2022-01-01
371 14 SON Magdalena de Kino 2022-01-01
372 14 TAM Ciudad Gustavo Díaz Ordaz 2022-01-01
373 14 VER Poza Rica de Hidalgo 2022-01-01
374 14 ZAC Luis Moya 2022-01-01
375 15 COA Nadadores 2022-01-01
376 15 CHH Saucillo 2022-01-01
377 15 CHP Chiapa de Corzo 2022-01-01
378 15 CMX Ciudad de México 2022-01-01
379 15 GRO Tierra Colorada 2022-01-01
380 15 GUA Tarandacuao 2022-01-01
381 15 HID Tepeapulco 2022-01-01
382 15 JAL San Diego de Alejandría 2022-01-01
383 15 MEX Santa Maria Tultepec 2022-01-01
384 15 MIC Maravatío de Ocampo 2022-01-01
385 15 NAY San pedro Lagunillas 2022-01-01
386 15 NLE Cadereyta Jiménez 2022-01-01
387 15 OAX Cosolapa 2022-01-01
388 15 PUE Xicotepec 2022-01-01
389 15 SIN Angostura 2022-01-01
390 15 SLP Tierra Nueva 2022-01-01
391 15 TAM Estación Manuel (Úrsulo Galván) 2022-01-01
392 15 VER San Andrés Tuxtla 2022-01-01
393 15 ZAC Moyahua de Estrada 2022-01-01
394 16 COA Ramos Arizpe 2022-01-01
395 16 CHP Cacahoatán 2022-01-01
396 16 CMX Ciudad de México 2022-01-01
397 16 GRO Coyuca de Benítez 2022-01-01
398 16 GUA Huanímaro 2022-01-01
399 16 JAL La Resolana 2022-01-01
400 16 MEX Tultitlán de Mariano Escobedo 2022-01-01
401 16 MIC Zinapécuaro de Figueroa 2022-01-01
402 16 NAY La peñita de Jaltemba 2022-01-01
403 16 OAX Tlacolula de Matamoros 2022-01-01
404 16 PUE Ciudad Serdán 2022-01-01
405 16 SIN San Blas 2022-01-01
406 16 SLP Villa de Reyes 2022-01-01
407 16 TAM Xicoténcatl 2022-01-01
408 16 VER Túxpam de Rodríguez Cano 2022-01-01
409 16 ZAC Sombrerete 2022-01-01
410 17 COA Nava 2022-01-01
411 17 CHP Ocozocoautla de Espinosa 2022-01-01
412 17 GRO Olinalá 2022-01-01
413 17 GUA Comonfort 2022-01-01
414 17 JAL Atotonilco el Alto 2022-01-01
415 17 MEX Cuautitlán 2022-01-01
416 17 MIC Puruándiro 2022-01-01
417 17 NAY Jala 2022-01-01
418 17 NLE Santiago 2022-01-01
419 17 OAX San Pablo Villa de Mitla 2022-01-01
420 17 PUE Amozoc 2022-01-01
421 17 SIN La Cruz 2022-01-01
422 17 SLP Fracción el Refugio 2022-01-01
423 17 TAM Ciudad Miguel Alemán 2022-01-01
424 17 VER Veracruz 2022-01-01
425 17 ZAC Jalpa 2022-01-01
426 18 COA Zaragoza 2022-01-01
427 18 CHP Cintalapa de Figueroa 2022-01-01
428 18 GRO Marquelia 2022-01-01
429 18 GUA Uriangato 2022-01-01
430 18 JAL Jalostotitlán 2022-01-01
431 18 MEX Ixtapaluca 2022-01-01
432 18 MIC Yurécuaro 2022-01-01
433 18 NAY Ahuacatlán 2022-01-01
434 18 NLE El cercado 2022-01-01
435 18 OAX Natividad 2022-01-01
436 18 SIN El rosario 2022-01-01
437 18 SLP Tamazunchale 2022-01-01
438 18 TAM Soto la Marina 2022-01-01
439 18 VER Tierra Blanca 2022-01-01
440 18 ZAC Loreto 2022-01-01
441 19 COA San Buenaventura 2022-01-01
442 19 CHP Pichucalco 2022-01-01
443 19 GRO Zumpango del Río 2022-01-01
444 19 GUA Pénjamo 2022-01-01
445 19 JAL Poncitlán 2022-01-01
446 19 MEX Texcoco de Mora 2022-01-01
447 19 MIC Huetamo de Núñez 2022-01-01
448 19 OAX Teotitlán de Flores Magón 2022-01-01
449 19 SIN Estación Naranjo 2022-01-01
450 19 SLP Santa María del Río 2022-01-01
451 19 TAM Ciudad Tula 2022-01-01
452 19 VER Cosamaloapan 2022-01-01
453 19 ZAC Juan Aldama 2022-01-01
454 20 COA Ciudad Melchor Múzquiz 2022-01-01
455 20 CHP Puerto Madero (San Benito) 2022-01-01
456 20 GRO San Luis de la Loma 2022-01-01
457 20 GUA Cuerámaro 2022-01-01
458 20 JAL Arandas 2022-01-01
459 20 MEX Toluca de Lerdo 2022-01-01
460 20 MIC Tacámbaro de Codallos 2022-01-01
461 20 NLE Anáhuac 2022-01-01
462 20 OAX Santa María Huatulco 2022-01-01
463 20 SIN Aguaruto 2022-01-01
464 20 SLP El Naranjo 2022-01-01
465 20 TAM Nueva Ciudad Guerrero 2022-01-01
466 20 VER Carlos A. Carrillo 2022-01-01
467 21 COA Viesca 2022-01-01
468 21 CHP Pijijiapan 2022-01-01
469 21 GRO Petatlán 2022-01-01
470 21 GUA Empalme Escobedo (Escobedo) 2022-01-01
471 21 JAL Talpa de Allende 2022-01-01
472 21 MEX Valle de Chalco Solidaridad 2022-01-01
473 21 MIC Ciudad Lázaro Cárdenas 2022-01-01
474 21 NLE García 2022-01-01
475 21 OAX San Juan Bautista Cuicatlán 2022-01-01
476 21 SIN Cosalá 2022-01-01
477 21 TAM Valle Hermoso 2022-01-01
478 21 VER Pánuco 2022-01-01
479 22 COA Morelos 2022-01-01
480 22 CHP Reforma 2022-01-01
481 22 GRO La Unión 2022-01-01
482 22 GUA San Luis de la Paz 2022-01-01
483 22 JAL Etzatlán 2022-01-01
484 22 MEX Tejupilco de Hidalgo 2022-01-01
485 22 MIC Las Guacamayas 2022-01-01
486 22 NLE Ciudad Benito Juárez 2022-01-01
487 22 OAX Villa Sola de Vega 2022-01-01
488 22 SIN San Ignacio 2022-01-01
489 22 VER Tampico Alto 2022-01-01
490 23 COA Arteaga 2022-01-01
491 23 CHP Huixtla 2022-01-01
492 23 GRO San Luis San Pedro 2022-01-01
493 23 GUA Valle de Santiago 2022-01-01
494 23 JAL Sayula 2022-01-01
495 23 MEX Chalco de Díaz Covarrubias 2022-01-01
496 23 MIC Jiquilpan de Juárez 2022-01-01
497 23 OAX Ocotlán de Morelos 2022-01-01
498 23 SIN Topolobampo 2022-01-01
499 23 VER Tempoal de Sánchez 2022-01-01
500 24 COA Allende 2022-01-01
501 24 CHP Motozintla de Mendoza 2022-01-01
502 24 GRO Teloloapan 2022-01-01
503 24 GUA Abasolo 2022-01-01
504 24 JAL Ahualulco de Mercado 2022-01-01
505 24 MEX Amatepec 2022-01-01
506 24 MIC Tuxpan 2022-01-01
507 24 OAX Villa de Zaachila 2022-01-01
508 24 SIN Lic. Benito Juárez (Campo Gobierno) 2022-01-01
509 24 VER Tantoyuca 2022-01-01
510 25 CHP Acala 2022-01-01
511 25 GRO Técpan de Galeana 2022-01-01
512 25 GUA Rincón de Tamayo 2022-01-01
513 25 JAL Autlán de Navarro 2022-01-01
514 25 MIC Cotija de la Paz 2022-01-01
515 25 OAX Miahuatlán de Porfirio Díaz 2022-01-01
516 25 VER Gutiérrez Zamora 2022-01-01
517 26 GRO Huitzuco 2022-01-01
518 26 GUA Villagrán 2022-01-01
519 26 JAL Magdalena 2022-01-01
520 26 MEX Melchor Ocampo 2022-01-01
521 26 MIC Nueva Italia de Ruiz 2022-01-01
522 26 OAX Unión Hidalgo 2022-01-01
523 26 VER Platón Sánchez 2022-01-01
524 27 GRO Tixtla de Guerrero 2022-01-01
525 27 GUA Yuriria 2022-01-01
526 27 JAL San Julián 2022-01-01
527 27 MEX San Vicente Chicoloapan de Juárez 2022-01-01
528 27 MIC Cuitzeo del Porvenir 2022-01-01
529 27 OAX El Camarón 2022-01-01
530 27 VER Juan Rodríguez Clara 2022-01-01
531 28 GRO Tepecoacuilco de Trujano 2022-01-01
532 28 GUA Apaseo el Grande 2022-01-01
533 28 JAL Cocula 2022-01-01
534 28 MEX Capulhuac 2022-01-01
535 28 OAX San Pedro Mixtepec -Dto. 22- 2022-01-01
536 28 VER Huatusco de Chicuellar 2022-01-01
537 29 GRO San Marcos 2022-01-01
538 29 GUA Purísima de Bustos 2022-01-01
539 29 JAL El Grullo 2022-01-01
540 29 MEX Juchitepec de Mariano Riva Palacio 2022-01-01
541 29 OAX Santa Cruz Itundujia 2022-01-01
542 29 VER Ixtaczoquitlán 2022-01-01
543 30 GRO Azoyú 2022-01-01
544 30 GUA Salvatierra 2022-01-01
545 30 JAL San Miguel el Alto 2022-01-01
546 30 MEX Tequixquiac 2022-01-01
547 30 OAX Chahuites 2022-01-01
548 30 VER Río Blanco 2022-01-01
549 31 GRO Tlapehuala 2022-01-01
550 31 GUA Marfil 2022-01-01
551 31 JAL Tala 2022-01-01
552 31 MEX Xonacatlán 2022-01-01
553 31 OAX Heroica Ciudad de Ejutla de Crespo 2022-01-01
554 31 VER Isla 2022-01-01
555 32 GRO San Luis Acatlán 2022-01-01
556 32 GUA San José Iturbide 2022-01-01
557 32 JAL La Barca 2022-01-01
558 32 MEX San Mateo Atenco 2022-01-01
559 32 OAX San Pedro Tapanatepec 2022-01-01
560 32 VER Cuitláhuac 2022-01-01
561 33 GRO Chilapa de Álvarez 2022-01-01
562 33 GUA Apaseo el Alto 2022-01-01
563 33 JAL Jamay 2022-01-01
564 33 OAX Vicente Camalote 2022-01-01
565 33 VER Fortín de las Flores 2022-01-01
566 34 GRO Tlapa de Comonfort 2022-01-01
567 34 GUA Ciudad Manuel Doblado 2022-01-01
568 34 JAL Yahualica de González Gallo 2022-01-01
569 34 OAX Villa de Tamazulápam del Progreso 2022-01-01
570 34 VER Alvarado 2022-01-01
571 35 GRO Tlalixtaquilla 2022-01-01
572 35 GUA Jaral del Progreso 2022-01-01
573 35 JAL Colotlán 2022-01-01
574 35 OAX San Juan Bautista lo de Soto 2022-01-01
575 35 VER José Cardel 2022-01-01
576 36 GRO Cuajinicuilapa 2022-01-01
577 36 GUA San Diego de la Unión 2022-01-01
578 36 JAL Cihuatlán 2022-01-01
579 36 MEX Chiconcuac 2022-01-01
580 36 OAX San Juan Cacahuatepec 2022-01-01
581 36 VER Banderilla 2022-01-01
582 37 GRO Huamuxtitlán 2022-01-01
583 37 GUA Santa Cruz Juventino Rosas 2022-01-01
584 37 JAL Zapotiltic 2022-01-01
585 37 OAX San Pedro Totolapa 2022-01-01
586 37 VER Paraje Nuevo 2022-01-01
587 38 GRO Cruz Grande 2022-01-01
588 38 GUA Doctor Mora 2022-01-01
589 38 JAL Villa Corona 2022-01-01
590 38 OAX San Miguel el Grande 2022-01-01
591 38 VER Playa Vicente 2022-01-01
592 39 GRO Ocotito 2022-01-01
593 39 GUA Dolores Hgo. Cuna de la Indep. Nal. 2022-01-01
594 39 JAL Teocaltiche 2022-01-01
595 39 MEX Almoloya de Juárez 2022-01-01
596 39 OAX Zimatlán de Álvarez 2022-01-01
597 39 VER Altotonga 2022-01-01
598 40 GRO Copala 2022-01-01
599 40 MEX Ocoyoacac 2022-01-01
600 40 OAX San Pablo Huitzo 2022-01-01
601 40 VER Juan Díaz Covarrubias 2022-01-01
602 41 GRO Zihuatanejo 2022-01-01
603 41 JAL Tequila 2022-01-01
604 41 MEX Zumpango 2022-01-01
605 41 OAX San Francisco Telixtlahuaca 2022-01-01
606 41 VER Cuichapa 2022-01-01
607 42 JAL El Quince (San José el Quince) 2022-01-01
608 42 OAX Mariscala de Juárez 2022-01-01
609 42 VER Santiago Tuxtla 2022-01-01
610 43 JAL San José el Verde (El Verde) 2022-01-01
611 43 OAX Santiago Pinotepa Nacional 2022-01-01
612 43 VER Huayacocotla 2022-01-01
613 44 JAL Jocotepec 2022-01-01
614 44 OAX Santiago Jamiltepec 2022-01-01
615 44 VER Paso de Ovejas 2022-01-01
616 45 JAL Tecalitlán 2022-01-01
617 45 OAX San Pedro Pochutla 2022-01-01
618 45 VER Catemaco 2022-01-01
619 46 JAL Chapala 2022-01-01
620 46 OAX Heroica Ciudad de Tlaxiaco 2022-01-01
621 46 VER Nogales 2022-01-01
622 47 JAL Ajijic 2022-01-01
623 47 OAX San Juan Bautista Valle Nacional 2022-01-01
624 47 VER Las Choapas 2022-01-01
625 48 JAL San Ignacio Cerro Gordo 2022-01-01
626 48 OAX Lagunas 2022-01-01
627 48 VER General Miguel Alemán (Potrero Nuevo) 2022-01-01
628 49 JAL Zacoalco de Torres 2022-01-01
629 49 OAX Ciudad Ixtepec 2022-01-01
630 49 VER Coatzintla 2022-01-01
631 50 JAL Huejuquilla el Alto 2022-01-01
632 50 OAX Santiago Juxtlahuaca 2022-01-01
633 50 VER Ángel R. Cabada 2022-01-01
634 51 JAL Villa Hidalgo 2022-01-01
635 51 OAX San Sebastián Tecomaxtlahuaca 2022-01-01
636 51 VER San Rafael 2022-01-01
637 52 JAL Unión de San Antonio 2022-01-01
638 52 OAX Asunción Nochixtlán 2022-01-01
639 52 VER Tlacojalpan 2022-01-01
640 53 JAL Las Pintitas 2022-01-01
641 53 OAX San Francisco Ixhuatán 2022-01-01
642 53 VER Cosoleacaque 2022-01-01
643 54 JAL Tamazula de Gordiano 2022-01-01
644 54 OAX San Blas Atempa 2022-01-01
645 54 VER Lerdo de Tejada 2022-01-01
646 55 JAL Acatlán de Juárez 2022-01-01
647 55 OAX Santo Domingo Tehuantepec 2022-01-01
648 55 VER Tihuatlán 2022-01-01
649 56 JAL Valle de Guadalupe 2022-01-01
650 56 OAX Cuilápam de Guerrero 2022-01-01
651 56 VER Atoyac 2022-01-01
652 57 OAX El Rosario 2022-01-01
653 57 VER Huiloapan de Cuauhtémoc 2022-01-01
654 58 OAX Santa Lucia del Camino 2022-01-01
655 58 VER Cazones de Herrera 2022-01-01
656 59 OAX San Antonio de la Cal 2022-01-01
657 59 VER Yecuatla 2022-01-01
658 60 VER Soledad de Doblado 2022-01-01
659 61 VER Cerro Azul 2022-01-01
660 62 VER Tezonapa 2022-01-01
661 66 VER Sihuapan 2022-01-01
662 67 VER El Higo 2022-01-01
663 68 VER Paso del Macho 2022-01-01
664 69 VER Tlapacoyan 2022-01-01

View File

@ -0,0 +1,183 @@
AED;"Dirham de EAU";2;5;2022-01-01;
AFN;Afghani;2;5;2022-01-01;
ALL;Lek;2;5;2022-01-01;
AMD;"Dram armenio";2;5;2022-01-01;
ANG;"Florín antillano neerlandés";2;5;2022-01-01;
AOA;Kwanza;2;5;2022-01-01;
ARS;"Peso Argentino";2;5;2022-01-01;
AUD;"Dólar Australiano";2;5;2022-01-01;
AWG;"Aruba Florin";2;5;2022-01-01;
AZN;"Azerbaijanian Manat";2;5;2022-01-01;
BAM;"Convertibles marca";2;5;2022-01-01;
BBD;"Dólar de Barbados";2;5;2022-01-01;
BDT;Taka;2;5;2022-01-01;
BGN;"Lev búlgaro";2;5;2022-01-01;
BHD;"Dinar de Bahrein";3;5;2022-01-01;
BIF;"Burundi Franc";0;5;2022-01-01;
BMD;"Dólar de Bermudas";2;5;2022-01-01;
BND;"Dólar de Brunei";2;5;2022-01-01;
BOB;Boliviano;2;5;2022-01-01;
BOV;Mvdol;2;5;2022-01-01;
BRL;"Real brasileño";2;5;2022-01-01;
BSD;"Dólar de las Bahamas";2;5;2022-01-01;
BTN;Ngultrum;2;5;2022-01-01;
BWP;Pula;2;5;2022-01-01;
BYR;"Rublo bielorruso";0;5;2022-01-01;
BZD;"Dólar de Belice";2;5;2022-01-01;
CAD;"Dólar Canadiense";2;5;2022-01-01;
CDF;"Franco congoleño";2;5;2022-01-01;
CHE;"WIR Euro";2;5;2022-01-01;
CHF;"Franco Suizo";2;5;2022-01-01;
CHW;"Franc WIR";2;5;2022-01-01;
CLF;"Unidad de Fomento";4;5;2022-01-01;
CLP;"Peso chileno";0;5;2022-01-01;
CNH;"Yuan extracontinental (China )";2;5;2023-05-29;
CNY;"Yuan Renminbi";2;5;2022-01-01;
COP;"Peso Colombiano";2;5;2022-01-01;
COU;"Unidad de Valor real";2;5;2022-01-01;
CRC;"Colón costarricense";2;5;2022-01-01;
CUC;"Peso Convertible";2;5;2022-01-01;
CUP;"Peso Cubano";2;5;2022-01-01;
CVE;"Cabo Verde Escudo";2;5;2022-01-01;
CZK;"Corona checa";2;5;2022-01-01;
DJF;"Franco de Djibouti";0;5;2022-01-01;
DKK;"Corona danesa";2;5;2022-01-01;
DOP;"Peso Dominicano";2;5;2022-01-01;
DZD;"Dinar argelino";2;5;2022-01-01;
EGP;"Libra egipcia";2;5;2022-01-01;
ERN;Nakfa;2;5;2022-01-01;
ESD;"Dólar de Ecuador";2;5;2023-05-29;
ETB;"Birr etíope";2;5;2022-01-01;
EUR;Euro;2;5;2022-01-01;
FJD;"Dólar de Fiji";2;5;2022-01-01;
FKP;"Libra malvinense";2;5;2022-01-01;
GBP;"Libra Esterlina";2;5;2022-01-01;
GEL;Lari;2;5;2022-01-01;
GHS;"Cedi de Ghana";2;5;2022-01-01;
GIP;"Libra de Gibraltar";2;5;2022-01-01;
GMD;Dalasi;2;5;2022-01-01;
GNF;"Franco guineano";0;5;2022-01-01;
GTQ;Quetzal;2;5;2022-01-01;
GYD;"Dólar guyanés";2;5;2022-01-01;
HKD;"Dólar De Hong Kong";2;5;2022-01-01;
HNL;Lempira;2;5;2022-01-01;
HRK;Kuna;2;5;2022-01-01;
HTG;Gourde;2;5;2022-01-01;
HUF;Florín;2;5;2022-01-01;
IDR;Rupia;2;5;2022-01-01;
ILS;"Nuevo Shekel Israelí";2;5;2022-01-01;
INR;"Rupia india";2;5;2022-01-01;
IQD;"Dinar iraquí";3;5;2022-01-01;
IRR;"Rial iraní";2;5;2022-01-01;
ISK;"Corona islandesa";0;5;2022-01-01;
JMD;"Dólar Jamaiquino";2;5;2022-01-01;
JOD;"Dinar jordano";3;5;2022-01-01;
JPY;Yen;0;5;2022-01-01;
KES;"Chelín keniano";2;5;2022-01-01;
KGS;Som;2;5;2022-01-01;
KHR;Riel;2;5;2022-01-01;
KMF;"Franco Comoro";0;5;2022-01-01;
KPW;"Corea del Norte ganó";2;5;2022-01-01;
KRW;Won;0;5;2022-01-01;
KWD;"Dinar kuwaití";3;5;2022-01-01;
KYD;"Dólar de las Islas Caimán";2;5;2022-01-01;
KZT;Tenge;2;5;2022-01-01;
LAK;Kip;2;5;2022-01-01;
LBP;"Libra libanesa";2;5;2022-01-01;
LKR;"Rupia de Sri Lanka";2;5;2022-01-01;
LRD;"Dólar liberiano";2;5;2022-01-01;
LSL;Loti;2;5;2022-01-01;
LYD;"Dinar libio";3;5;2022-01-01;
MAD;"Dirham marroquí";2;5;2022-01-01;
MDL;"Leu moldavo";2;5;2022-01-01;
MGA;"Ariary malgache";2;5;2022-01-01;
MKD;Denar;2;5;2022-01-01;
MMK;Kyat;2;5;2022-01-01;
MNT;Tugrik;2;5;2022-01-01;
MOP;Pataca;2;5;2022-01-01;
MRO;Ouguiya;2;5;2022-01-01;
MUR;"Rupia de Mauricio";2;5;2022-01-01;
MVR;Rupia;2;5;2022-01-01;
MWK;Kwacha;2;5;2022-01-01;
MXN;"Peso Mexicano";2;5;2022-01-01;
MXV;"México Unidad de Inversión (UDI)";2;5;2022-01-01;
MYR;"Ringgit malayo";2;5;2022-01-01;
MZN;"Mozambique Metical";2;5;2022-01-01;
NAD;"Dólar de Namibia";2;5;2022-01-01;
NGN;Naira;2;5;2022-01-01;
NIC;"Córdoba (Nicaragua)";2;5;2023-05-29;
NIO;"Córdoba Oro";2;5;2022-01-01;
NOK;"Corona noruega";2;5;2022-01-01;
NPR;"Rupia nepalí";2;5;2022-01-01;
NZD;"Dólar de Nueva Zelanda";2;5;2022-01-01;
OMR;"Rial omaní";3;5;2022-01-01;
PAB;Balboa;2;5;2022-01-01;
PEN;"Nuevo Sol";2;5;2022-01-01;
PGK;Kina;2;5;2022-01-01;
PHP;"Peso filipino";2;5;2022-01-01;
PKR;"Rupia de Pakistán";2;5;2022-01-01;
PLN;Zloty;2;5;2022-01-01;
PYG;Guaraní;0;5;2022-01-01;
QAR;"Qatar Rial";2;5;2022-01-01;
RON;"Leu rumano";2;5;2022-01-01;
RSD;"Dinar serbio";2;5;2022-01-01;
RUB;"Rublo ruso";2;5;2022-01-01;
RWF;"Franco ruandés";0;5;2022-01-01;
SAR;"Riyal saudí";2;5;2022-01-01;
SBD;"Dólar de las Islas Salomón";2;5;2022-01-01;
SCR;"Rupia de Seychelles";2;5;2022-01-01;
SDG;"Libra sudanesa";2;5;2022-01-01;
SEK;"Corona sueca";2;5;2022-01-01;
SGD;"Dólar De Singapur";2;5;2022-01-01;
SHP;"Libra de Santa Helena";2;5;2022-01-01;
SLL;Leona;2;5;2022-01-01;
SOS;"Chelín somalí";2;5;2022-01-01;
SRD;"Dólar de Suriname";2;5;2022-01-01;
SSP;"Libra sudanesa Sur";2;5;2022-01-01;
STD;Dobra;2;5;2022-01-01;
SVC;"Colon El Salvador";2;5;2022-01-01;
SYP;"Libra Siria";2;5;2022-01-01;
SZL;Lilangeni;2;5;2022-01-01;
THB;Baht;2;5;2022-01-01;
TJS;Somoni;2;5;2022-01-01;
TMT;"Turkmenistán nuevo manat";2;5;2022-01-01;
TND;"Dinar tunecino";3;5;2022-01-01;
TOP;Pa'anga;2;5;2022-01-01;
TRY;"Lira turca";2;5;2022-01-01;
TTD;"Dólar de Trinidad y Tobago";2;5;2022-01-01;
TWD;"Nuevo dólar de Taiwán";2;5;2022-01-01;
TZS;"Shilling tanzano";2;5;2022-01-01;
UAH;Hryvnia;2;5;2022-01-01;
UGX;"Shilling de Uganda";0;5;2022-01-01;
USD;"Dólar americano";2;5;2022-01-01;
USN;"Dólar estadounidense (día siguiente)";2;5;2022-01-01;
UYI;"Peso Uruguay en Unidades Indexadas (URUIURUI)";0;5;2022-01-01;
UYP;"Uruguay (Peso)";2;5;2023-05-29;
UYU;"Peso Uruguayo";2;5;2022-01-01;
UZS;"Uzbekistán Sum";2;5;2022-01-01;
VEF;Bolívar;2;5;2022-01-01;
VES;"Bolívar digital (Venezuela)";2;5;2023-05-29;
VND;Dong;0;5;2022-01-01;
VUV;Vatu;0;5;2022-01-01;
WST;Tala;2;5;2022-01-01;
XAF;"Franco CFA BEAC";0;5;2022-01-01;
XAG;Plata;0;5;2022-01-01;
XAU;Oro;0;5;2022-01-01;
XBA;"Unidad de Mercados de Bonos Unidad Europea Composite (EURCO)";0;5;2022-01-01;
XBB;"Unidad Monetaria de Bonos de Mercados Unidad Europea (UEM-6)";0;5;2022-01-01;
XBC;"Mercados de Bonos Unidad Europea unidad de cuenta a 9 (UCE-9)";0;5;2022-01-01;
XBD;"Mercados de Bonos Unidad Europea unidad de cuenta a 17 (UCE-17)";0;5;2022-01-01;
XCD;"Dólar del Caribe Oriental";2;5;2022-01-01;
XDR;"DEG (Derechos Especiales de Giro)";0;5;2022-01-01;
XOF;"Franco CFA BCEAO";0;5;2022-01-01;
XPD;Paladio;0;5;2022-01-01;
XPF;"Franco CFP";0;5;2022-01-01;
XPT;Platino;0;5;2022-01-01;
XSU;Sucre;0;5;2022-01-01;
XTS;"Códigos reservados específicamente para propósitos de prueba";0;;2022-01-01;
XUA;"Unidad ADB de Cuenta";0;5;2022-01-01;
XXX;"Los códigos asignados para las transacciones en que intervenga ninguna moneda";0;;2022-01-01;
YER;"Rial yemení";2;5;2022-01-01;
ZAR;Rand;2;5;2022-01-01;
ZMW;"Kwacha zambiano";2;5;2022-01-01;
ZWL;"Zimbabwe Dólar";2;5;2022-01-01;
1 AED Dirham de EAU 2 5 2022-01-01
2 AFN Afghani 2 5 2022-01-01
3 ALL Lek 2 5 2022-01-01
4 AMD Dram armenio 2 5 2022-01-01
5 ANG Florín antillano neerlandés 2 5 2022-01-01
6 AOA Kwanza 2 5 2022-01-01
7 ARS Peso Argentino 2 5 2022-01-01
8 AUD Dólar Australiano 2 5 2022-01-01
9 AWG Aruba Florin 2 5 2022-01-01
10 AZN Azerbaijanian Manat 2 5 2022-01-01
11 BAM Convertibles marca 2 5 2022-01-01
12 BBD Dólar de Barbados 2 5 2022-01-01
13 BDT Taka 2 5 2022-01-01
14 BGN Lev búlgaro 2 5 2022-01-01
15 BHD Dinar de Bahrein 3 5 2022-01-01
16 BIF Burundi Franc 0 5 2022-01-01
17 BMD Dólar de Bermudas 2 5 2022-01-01
18 BND Dólar de Brunei 2 5 2022-01-01
19 BOB Boliviano 2 5 2022-01-01
20 BOV Mvdol 2 5 2022-01-01
21 BRL Real brasileño 2 5 2022-01-01
22 BSD Dólar de las Bahamas 2 5 2022-01-01
23 BTN Ngultrum 2 5 2022-01-01
24 BWP Pula 2 5 2022-01-01
25 BYR Rublo bielorruso 0 5 2022-01-01
26 BZD Dólar de Belice 2 5 2022-01-01
27 CAD Dólar Canadiense 2 5 2022-01-01
28 CDF Franco congoleño 2 5 2022-01-01
29 CHE WIR Euro 2 5 2022-01-01
30 CHF Franco Suizo 2 5 2022-01-01
31 CHW Franc WIR 2 5 2022-01-01
32 CLF Unidad de Fomento 4 5 2022-01-01
33 CLP Peso chileno 0 5 2022-01-01
34 CNH Yuan extracontinental (China ) 2 5 2023-05-29
35 CNY Yuan Renminbi 2 5 2022-01-01
36 COP Peso Colombiano 2 5 2022-01-01
37 COU Unidad de Valor real 2 5 2022-01-01
38 CRC Colón costarricense 2 5 2022-01-01
39 CUC Peso Convertible 2 5 2022-01-01
40 CUP Peso Cubano 2 5 2022-01-01
41 CVE Cabo Verde Escudo 2 5 2022-01-01
42 CZK Corona checa 2 5 2022-01-01
43 DJF Franco de Djibouti 0 5 2022-01-01
44 DKK Corona danesa 2 5 2022-01-01
45 DOP Peso Dominicano 2 5 2022-01-01
46 DZD Dinar argelino 2 5 2022-01-01
47 EGP Libra egipcia 2 5 2022-01-01
48 ERN Nakfa 2 5 2022-01-01
49 ESD Dólar de Ecuador 2 5 2023-05-29
50 ETB Birr etíope 2 5 2022-01-01
51 EUR Euro 2 5 2022-01-01
52 FJD Dólar de Fiji 2 5 2022-01-01
53 FKP Libra malvinense 2 5 2022-01-01
54 GBP Libra Esterlina 2 5 2022-01-01
55 GEL Lari 2 5 2022-01-01
56 GHS Cedi de Ghana 2 5 2022-01-01
57 GIP Libra de Gibraltar 2 5 2022-01-01
58 GMD Dalasi 2 5 2022-01-01
59 GNF Franco guineano 0 5 2022-01-01
60 GTQ Quetzal 2 5 2022-01-01
61 GYD Dólar guyanés 2 5 2022-01-01
62 HKD Dólar De Hong Kong 2 5 2022-01-01
63 HNL Lempira 2 5 2022-01-01
64 HRK Kuna 2 5 2022-01-01
65 HTG Gourde 2 5 2022-01-01
66 HUF Florín 2 5 2022-01-01
67 IDR Rupia 2 5 2022-01-01
68 ILS Nuevo Shekel Israelí 2 5 2022-01-01
69 INR Rupia india 2 5 2022-01-01
70 IQD Dinar iraquí 3 5 2022-01-01
71 IRR Rial iraní 2 5 2022-01-01
72 ISK Corona islandesa 0 5 2022-01-01
73 JMD Dólar Jamaiquino 2 5 2022-01-01
74 JOD Dinar jordano 3 5 2022-01-01
75 JPY Yen 0 5 2022-01-01
76 KES Chelín keniano 2 5 2022-01-01
77 KGS Som 2 5 2022-01-01
78 KHR Riel 2 5 2022-01-01
79 KMF Franco Comoro 0 5 2022-01-01
80 KPW Corea del Norte ganó 2 5 2022-01-01
81 KRW Won 0 5 2022-01-01
82 KWD Dinar kuwaití 3 5 2022-01-01
83 KYD Dólar de las Islas Caimán 2 5 2022-01-01
84 KZT Tenge 2 5 2022-01-01
85 LAK Kip 2 5 2022-01-01
86 LBP Libra libanesa 2 5 2022-01-01
87 LKR Rupia de Sri Lanka 2 5 2022-01-01
88 LRD Dólar liberiano 2 5 2022-01-01
89 LSL Loti 2 5 2022-01-01
90 LYD Dinar libio 3 5 2022-01-01
91 MAD Dirham marroquí 2 5 2022-01-01
92 MDL Leu moldavo 2 5 2022-01-01
93 MGA Ariary malgache 2 5 2022-01-01
94 MKD Denar 2 5 2022-01-01
95 MMK Kyat 2 5 2022-01-01
96 MNT Tugrik 2 5 2022-01-01
97 MOP Pataca 2 5 2022-01-01
98 MRO Ouguiya 2 5 2022-01-01
99 MUR Rupia de Mauricio 2 5 2022-01-01
100 MVR Rupia 2 5 2022-01-01
101 MWK Kwacha 2 5 2022-01-01
102 MXN Peso Mexicano 2 5 2022-01-01
103 MXV México Unidad de Inversión (UDI) 2 5 2022-01-01
104 MYR Ringgit malayo 2 5 2022-01-01
105 MZN Mozambique Metical 2 5 2022-01-01
106 NAD Dólar de Namibia 2 5 2022-01-01
107 NGN Naira 2 5 2022-01-01
108 NIC Córdoba (Nicaragua) 2 5 2023-05-29
109 NIO Córdoba Oro 2 5 2022-01-01
110 NOK Corona noruega 2 5 2022-01-01
111 NPR Rupia nepalí 2 5 2022-01-01
112 NZD Dólar de Nueva Zelanda 2 5 2022-01-01
113 OMR Rial omaní 3 5 2022-01-01
114 PAB Balboa 2 5 2022-01-01
115 PEN Nuevo Sol 2 5 2022-01-01
116 PGK Kina 2 5 2022-01-01
117 PHP Peso filipino 2 5 2022-01-01
118 PKR Rupia de Pakistán 2 5 2022-01-01
119 PLN Zloty 2 5 2022-01-01
120 PYG Guaraní 0 5 2022-01-01
121 QAR Qatar Rial 2 5 2022-01-01
122 RON Leu rumano 2 5 2022-01-01
123 RSD Dinar serbio 2 5 2022-01-01
124 RUB Rublo ruso 2 5 2022-01-01
125 RWF Franco ruandés 0 5 2022-01-01
126 SAR Riyal saudí 2 5 2022-01-01
127 SBD Dólar de las Islas Salomón 2 5 2022-01-01
128 SCR Rupia de Seychelles 2 5 2022-01-01
129 SDG Libra sudanesa 2 5 2022-01-01
130 SEK Corona sueca 2 5 2022-01-01
131 SGD Dólar De Singapur 2 5 2022-01-01
132 SHP Libra de Santa Helena 2 5 2022-01-01
133 SLL Leona 2 5 2022-01-01
134 SOS Chelín somalí 2 5 2022-01-01
135 SRD Dólar de Suriname 2 5 2022-01-01
136 SSP Libra sudanesa Sur 2 5 2022-01-01
137 STD Dobra 2 5 2022-01-01
138 SVC Colon El Salvador 2 5 2022-01-01
139 SYP Libra Siria 2 5 2022-01-01
140 SZL Lilangeni 2 5 2022-01-01
141 THB Baht 2 5 2022-01-01
142 TJS Somoni 2 5 2022-01-01
143 TMT Turkmenistán nuevo manat 2 5 2022-01-01
144 TND Dinar tunecino 3 5 2022-01-01
145 TOP Pa'anga 2 5 2022-01-01
146 TRY Lira turca 2 5 2022-01-01
147 TTD Dólar de Trinidad y Tobago 2 5 2022-01-01
148 TWD Nuevo dólar de Taiwán 2 5 2022-01-01
149 TZS Shilling tanzano 2 5 2022-01-01
150 UAH Hryvnia 2 5 2022-01-01
151 UGX Shilling de Uganda 0 5 2022-01-01
152 USD Dólar americano 2 5 2022-01-01
153 USN Dólar estadounidense (día siguiente) 2 5 2022-01-01
154 UYI Peso Uruguay en Unidades Indexadas (URUIURUI) 0 5 2022-01-01
155 UYP Uruguay (Peso) 2 5 2023-05-29
156 UYU Peso Uruguayo 2 5 2022-01-01
157 UZS Uzbekistán Sum 2 5 2022-01-01
158 VEF Bolívar 2 5 2022-01-01
159 VES Bolívar digital (Venezuela) 2 5 2023-05-29
160 VND Dong 0 5 2022-01-01
161 VUV Vatu 0 5 2022-01-01
162 WST Tala 2 5 2022-01-01
163 XAF Franco CFA BEAC 0 5 2022-01-01
164 XAG Plata 0 5 2022-01-01
165 XAU Oro 0 5 2022-01-01
166 XBA Unidad de Mercados de Bonos Unidad Europea Composite (EURCO) 0 5 2022-01-01
167 XBB Unidad Monetaria de Bonos de Mercados Unidad Europea (UEM-6) 0 5 2022-01-01
168 XBC Mercados de Bonos Unidad Europea unidad de cuenta a 9 (UCE-9) 0 5 2022-01-01
169 XBD Mercados de Bonos Unidad Europea unidad de cuenta a 17 (UCE-17) 0 5 2022-01-01
170 XCD Dólar del Caribe Oriental 2 5 2022-01-01
171 XDR DEG (Derechos Especiales de Giro) 0 5 2022-01-01
172 XOF Franco CFA BCEAO 0 5 2022-01-01
173 XPD Paladio 0 5 2022-01-01
174 XPF Franco CFP 0 5 2022-01-01
175 XPT Platino 0 5 2022-01-01
176 XSU Sucre 0 5 2022-01-01
177 XTS Códigos reservados específicamente para propósitos de prueba 0 2022-01-01
178 XUA Unidad ADB de Cuenta 0 5 2022-01-01
179 XXX Los códigos asignados para las transacciones en que intervenga ninguna moneda 0 2022-01-01
180 YER Rial yemení 2 5 2022-01-01
181 ZAR Rand 2 5 2022-01-01
182 ZMW Kwacha zambiano 2 5 2022-01-01
183 ZWL Zimbabwe Dólar 2 5 2022-01-01

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,251 @@
AFG;Afganistán;;;;
ALA;"Islas Åland";;;;
ALB;Albania;;;;
DEU;Alemania;;;;"Unión Europea"
AND;Andorra;;;;
AGO;Angola;;;;
AIA;Anguila;;;;
ATA;Antártida;;;;
ATG;"Antigua y Barbuda";;;;
SAU;"Arabia Saudita";;;;
DZA;Argelia;;;;
ARG;Argentina;;;;
ARM;Armenia;;;;
ABW;Aruba;;;;
AUS;Australia;;;;
AUT;Austria;;;;"Unión Europea"
AZE;Azerbaiyán;;;;
BHS;"Bahamas (las)";;;;
BGD;Bangladés;;;;
BRB;Barbados;;;;
BHR;Baréin;;;;
BEL;Bélgica;;;;"Unión Europea"
BLZ;Belice;;;;
BEN;Benín;;;;
BMU;Bermudas;;;;
BLR;Bielorrusia;;;;
MMR;Myanmar;;;;
BOL;"Bolivia, Estado Plurinacional de";;;;
BIH;"Bosnia y Herzegovina";;;;
BWA;Botsuana;;;;
BRA;Brasil;;;;
BRN;"Brunéi Darussalam";;;;
BGR;Bulgaria;;;;"Unión Europea"
BFA;"Burkina Faso";;;;
BDI;Burundi;;;;
BTN;Bután;;;;
CPV;"Cabo Verde";;;;
KHM;Camboya;;;;
CMR;Camerún;;;;
CAN;Canadá;"[A-Z][0-9][A-Z] [0-9][A-Z][0-9]";[0-9]{9};;TLCAN
QAT;Catar;;;;
BES;"Bonaire, San Eustaquio y Saba";;;;
TCD;Chad;;;;
CHL;Chile;;;;
CHN;China;;;;
CYP;Chipre;;;;"Unión Europea"
COL;Colombia;;;;
COM;Comoras;;;;
PRK;"Corea (la República Democrática Popular de)";;;;
KOR;"Corea (la República de)";;;;
CIV;"Côte d'Ivoire";;;;
CRI;"Costa Rica";;;;
HRV;Croacia;;;;"Unión Europea"
CUB;Cuba;;;;
CUW;Curaçao;;;;
DNK;Dinamarca;;;;"Unión Europea"
DMA;Dominica;;;;
ECU;Ecuador;;;;
EGY;Egipto;;;;
SLV;"El Salvador";;;;
ARE;"Emiratos Árabes Unidos (Los)";;;;
ERI;Eritrea;;;;
SVK;Eslovaquia;;;;"Unión Europea"
SVN;Eslovenia;;;;"Unión Europea"
ESP;España;;;;"Unión Europea"
USA;"Estados Unidos (los)";[0-9]{5}(-[0-9]{4})?;[0-9]{9};;TLCAN
EST;Estonia;;;;"Unión Europea"
ETH;Etiopía;;;;
PHL;"Filipinas (las)";;;;
FIN;Finlandia;;;;"Unión Europea"
FJI;Fiyi;;;;
FRA;Francia;;;;"Unión Europea"
GAB;Gabón;;;;
GMB;"Gambia (La)";;;;
GEO;Georgia;;;;
GHA;Ghana;;;;
GIB;Gibraltar;;;;
GRD;Granada;;;;
GRC;Grecia;;;;"Unión Europea"
GRL;Groenlandia;;;;
GLP;Guadalupe;;;;
GUM;Guam;;;;
GTM;Guatemala;;;;
GUF;"Guayana Francesa";;;;
GGY;Guernsey;;;;
GIN;Guinea;;;;
GNB;Guinea-Bisáu;;;;
GNQ;"Guinea Ecuatorial";;;;
GUY;Guyana;;;;
HTI;Haití;;;;
HND;Honduras;;;;
HKG;"Hong Kong";;;;
HUN;Hungría;;;;"Unión Europea"
IND;India;;;;
IDN;Indonesia;;;;
IRQ;Irak;;;;
IRN;"Irán (la República Islámica de)";;;;
IRL;Irlanda;;;;"Unión Europea"
BVT;"Isla Bouvet";;;;
IMN;"Isla de Man";;;;
CXR;"Isla de Navidad";;;;
NFK;"Isla Norfolk";;;;
ISL;Islandia;;;;
CYM;"Islas Caimán (las)";;;;
CCK;"Islas Cocos (Keeling)";;;;
COK;"Islas Cook (las)";;;;
FRO;"Islas Feroe (las)";;;;
SGS;"Georgia del sur y las islas sandwich del sur";;;;
HMD;"Isla Heard e Islas McDonald";;;;
FLK;"Islas Malvinas [Falkland] (las)";;;;
MNP;"Islas Marianas del Norte (las)";;;;
MHL;"Islas Marshall (las)";;;;
PCN;Pitcairn;;;;
SLB;"Islas Salomón (las)";;;;
TCA;"Islas Turcas y Caicos (las)";;;;
UMI;"Islas de Ultramar Menores de Estados Unidos (las)";;;;
VGB;"Islas Vírgenes (Británicas)";;;;
VIR;"Islas Vírgenes (EE.UU.)";;;;
ISR;Israel;;;;
ITA;Italia;;;;"Unión Europea"
JAM;Jamaica;;;;
JPN;Japón;;;;
JEY;Jersey;;;;
JOR;Jordania;;;;
KAZ;Kazajistán;;;;
KEN;Kenia;;;;
KGZ;Kirguistán;;;;
KIR;Kiribati;;;;
KWT;Kuwait;;;;
LAO;"Lao, (la) República Democrática Popular";;;;
LSO;Lesoto;;;;
LVA;Letonia;;;;"Unión Europea"
LBN;Líbano;;;;
LBR;Liberia;;;;
LBY;Libia;;;;
LIE;Liechtenstein;;;;
LTU;Lituania;;;;"Unión Europea"
LUX;Luxemburgo;;;;"Unión Europea"
MAC;Macao;;;;
MDG;Madagascar;;;;
MYS;Malasia;;;;
MWI;Malaui;;;;
MDV;Maldivas;;;;
MLI;Malí;;;;
MLT;Malta;;;;"Unión Europea"
MAR;Marruecos;;;;
MTQ;Martinica;;;;
MUS;Mauricio;;;;
MRT;Mauritania;;;;
MYT;Mayotte;;;;
MEX;México;[0-9]{5};"""[A-Z&Ñ]{3,4}[0-9]{2}(0[1-9]|1[012])(0[1-9]|[12][0-9]|3[01])[A-Z0-9]{2}[0
-9A]""";"Lista del SAT";TLCAN
FSM;"Micronesia (los Estados Federados de)";;;;
MDA;"Moldavia (la República de)";;;;
MCO;Mónaco;;;;
MNG;Mongolia;;;;
MNE;Montenegro;;;;
MSR;Montserrat;;;;
MOZ;Mozambique;;;;
NAM;Namibia;;;;
NRU;Nauru;;;;
NPL;Nepal;;;;
NIC;Nicaragua;;;;
NER;"Níger (el)";;;;
NGA;Nigeria;;;;
NIU;Niue;;;;
NOR;Noruega;;;;
NCL;"Nueva Caledonia";;;;
NZL;"Nueva Zelanda";;;;
OMN;Omán;;;;
NLD;"Países Bajos (los)";;;;"Unión Europea"
PAK;Pakistán;;;;
PLW;Palaos;;;;
PSE;"Palestina, Estado de";;;;
PAN;Panamá;;;;
PNG;"Papúa Nueva Guinea";;;;
PRY;Paraguay;;;;
PER;Perú;;;;
PYF;"Polinesia Francesa";;;;
POL;Polonia;;;;"Unión Europea"
PRT;Portugal;;;;"Unión Europea"
PRI;"Puerto Rico";;;;
GBR;"Reino Unido (el)";;;;"Unión Europea"
CAF;"República Centroafricana (la)";;;;
CZE;"República Checa (la)";;;;"Unión Europea"
MKD;"Macedonia (la antigua República Yugoslava de)";;;;
COG;Congo;;;;
COD;"Congo (la República Democrática del)";;;;
DOM;"República Dominicana (la)";;;;
REU;Reunión;;;;
RWA;Ruanda;;;;
ROU;Rumania;;;;"Unión Europea"
RUS;"Rusia, (la) Federación de";;;;
ESH;"Sahara Occidental";;;;
WSM;Samoa;;;;
ASM;"Samoa Americana";;;;
BLM;"San Bartolomé";;;;
KNA;"San Cristóbal y Nieves";;;;
SMR;"San Marino";;;;
MAF;"San Martín (parte francesa)";;;;
SPM;"San Pedro y Miquelón";;;;
VCT;"San Vicente y las Granadinas";;;;
SHN;"Santa Helena, Ascensión y Tristán de Acuña";;;;
LCA;"Santa Lucía";;;;
STP;"Santo Tomé y Príncipe";;;;
SEN;Senegal;;;;
SRB;Serbia;;;;
SYC;Seychelles;;;;
SLE;"Sierra leona";;;;
SGP;Singapur;;;;
SXM;"Sint Maarten (parte holandesa)";;;;
SYR;"Siria, (la) República Árabe";;;;
SOM;Somalia;;;;
LKA;"Sri Lanka";;;;
SWZ;Suazilandia;;;;
ZAF;Sudáfrica;;;;
SDN;"Sudán (el)";;;;
SSD;"Sudán del Sur";;;;
SWE;Suecia;;;;"Unión Europea"
CHE;Suiza;;;;
SUR;Surinam;;;;
SJM;"Svalbard y Jan Mayen";;;;
THA;Tailandia;;;;
TWN;"Taiwán (Provincia de China)";;;;
TZA;"Tanzania, República Unida de";;;;
TJK;Tayikistán;;;;
IOT;"Territorio Británico del Océano Índico (el)";;;;
ATF;"Territorios Australes Franceses (los)";;;;
TLS;Timor-Leste;;;;
TGO;Togo;;;;
TKL;Tokelau;;;;
TON;Tonga;;;;
TTO;"Trinidad y Tobago";;;;
TUN;Túnez;;;;
TKM;Turkmenistán;;;;
TUR;Turquía;;;;
TUV;Tuvalu;;;;
UKR;Ucrania;;;;
UGA;Uganda;;;;
URY;Uruguay;;;;
UZB;Uzbekistán;;;;
VUT;Vanuatu;;;;
VAT;"Santa Sede[Estado de la Ciudad del Vaticano] (la)";;;;
VEN;"Venezuela, República Bolivariana de";;;;
VNM;"Viet Nam";;;;
WLF;"Wallis y Futuna";;;;
YEM;Yemen;;;;
DJI;Yibuti;;;;
ZMB;Zambia;;;;
ZWE;Zimbabue;;;;
ZZZ;"Países no declarados";;;;
1 AFG Afganistán
2 ALA Islas Åland
3 ALB Albania
4 DEU Alemania Unión Europea
5 AND Andorra
6 AGO Angola
7 AIA Anguila
8 ATA Antártida
9 ATG Antigua y Barbuda
10 SAU Arabia Saudita
11 DZA Argelia
12 ARG Argentina
13 ARM Armenia
14 ABW Aruba
15 AUS Australia
16 AUT Austria Unión Europea
17 AZE Azerbaiyán
18 BHS Bahamas (las)
19 BGD Bangladés
20 BRB Barbados
21 BHR Baréin
22 BEL Bélgica Unión Europea
23 BLZ Belice
24 BEN Benín
25 BMU Bermudas
26 BLR Bielorrusia
27 MMR Myanmar
28 BOL Bolivia, Estado Plurinacional de
29 BIH Bosnia y Herzegovina
30 BWA Botsuana
31 BRA Brasil
32 BRN Brunéi Darussalam
33 BGR Bulgaria Unión Europea
34 BFA Burkina Faso
35 BDI Burundi
36 BTN Bután
37 CPV Cabo Verde
38 KHM Camboya
39 CMR Camerún
40 CAN Canadá [A-Z][0-9][A-Z] [0-9][A-Z][0-9] [0-9]{9} TLCAN
41 QAT Catar
42 BES Bonaire, San Eustaquio y Saba
43 TCD Chad
44 CHL Chile
45 CHN China
46 CYP Chipre Unión Europea
47 COL Colombia
48 COM Comoras
49 PRK Corea (la República Democrática Popular de)
50 KOR Corea (la República de)
51 CIV Côte d'Ivoire
52 CRI Costa Rica
53 HRV Croacia Unión Europea
54 CUB Cuba
55 CUW Curaçao
56 DNK Dinamarca Unión Europea
57 DMA Dominica
58 ECU Ecuador
59 EGY Egipto
60 SLV El Salvador
61 ARE Emiratos Árabes Unidos (Los)
62 ERI Eritrea
63 SVK Eslovaquia Unión Europea
64 SVN Eslovenia Unión Europea
65 ESP España Unión Europea
66 USA Estados Unidos (los) [0-9]{5}(-[0-9]{4})? [0-9]{9} TLCAN
67 EST Estonia Unión Europea
68 ETH Etiopía
69 PHL Filipinas (las)
70 FIN Finlandia Unión Europea
71 FJI Fiyi
72 FRA Francia Unión Europea
73 GAB Gabón
74 GMB Gambia (La)
75 GEO Georgia
76 GHA Ghana
77 GIB Gibraltar
78 GRD Granada
79 GRC Grecia Unión Europea
80 GRL Groenlandia
81 GLP Guadalupe
82 GUM Guam
83 GTM Guatemala
84 GUF Guayana Francesa
85 GGY Guernsey
86 GIN Guinea
87 GNB Guinea-Bisáu
88 GNQ Guinea Ecuatorial
89 GUY Guyana
90 HTI Haití
91 HND Honduras
92 HKG Hong Kong
93 HUN Hungría Unión Europea
94 IND India
95 IDN Indonesia
96 IRQ Irak
97 IRN Irán (la República Islámica de)
98 IRL Irlanda Unión Europea
99 BVT Isla Bouvet
100 IMN Isla de Man
101 CXR Isla de Navidad
102 NFK Isla Norfolk
103 ISL Islandia
104 CYM Islas Caimán (las)
105 CCK Islas Cocos (Keeling)
106 COK Islas Cook (las)
107 FRO Islas Feroe (las)
108 SGS Georgia del sur y las islas sandwich del sur
109 HMD Isla Heard e Islas McDonald
110 FLK Islas Malvinas [Falkland] (las)
111 MNP Islas Marianas del Norte (las)
112 MHL Islas Marshall (las)
113 PCN Pitcairn
114 SLB Islas Salomón (las)
115 TCA Islas Turcas y Caicos (las)
116 UMI Islas de Ultramar Menores de Estados Unidos (las)
117 VGB Islas Vírgenes (Británicas)
118 VIR Islas Vírgenes (EE.UU.)
119 ISR Israel
120 ITA Italia Unión Europea
121 JAM Jamaica
122 JPN Japón
123 JEY Jersey
124 JOR Jordania
125 KAZ Kazajistán
126 KEN Kenia
127 KGZ Kirguistán
128 KIR Kiribati
129 KWT Kuwait
130 LAO Lao, (la) República Democrática Popular
131 LSO Lesoto
132 LVA Letonia Unión Europea
133 LBN Líbano
134 LBR Liberia
135 LBY Libia
136 LIE Liechtenstein
137 LTU Lituania Unión Europea
138 LUX Luxemburgo Unión Europea
139 MAC Macao
140 MDG Madagascar
141 MYS Malasia
142 MWI Malaui
143 MDV Maldivas
144 MLI Malí
145 MLT Malta Unión Europea
146 MAR Marruecos
147 MTQ Martinica
148 MUS Mauricio
149 MRT Mauritania
150 MYT Mayotte
151 MEX México [0-9]{5} "[A-Z&Ñ]{3,4}[0-9]{2}(0[1-9]|1[012])(0[1-9]|[12][0-9]|3[01])[A-Z0-9]{2}[0 -9A]" Lista del SAT TLCAN
152 FSM Micronesia (los Estados Federados de)
153 MDA Moldavia (la República de)
154 MCO Mónaco
155 MNG Mongolia
156 MNE Montenegro
157 MSR Montserrat
158 MOZ Mozambique
159 NAM Namibia
160 NRU Nauru
161 NPL Nepal
162 NIC Nicaragua
163 NER Níger (el)
164 NGA Nigeria
165 NIU Niue
166 NOR Noruega
167 NCL Nueva Caledonia
168 NZL Nueva Zelanda
169 OMN Omán
170 NLD Países Bajos (los) Unión Europea
171 PAK Pakistán
172 PLW Palaos
173 PSE Palestina, Estado de
174 PAN Panamá
175 PNG Papúa Nueva Guinea
176 PRY Paraguay
177 PER Perú
178 PYF Polinesia Francesa
179 POL Polonia Unión Europea
180 PRT Portugal Unión Europea
181 PRI Puerto Rico
182 GBR Reino Unido (el) Unión Europea
183 CAF República Centroafricana (la)
184 CZE República Checa (la) Unión Europea
185 MKD Macedonia (la antigua República Yugoslava de)
186 COG Congo
187 COD Congo (la República Democrática del)
188 DOM República Dominicana (la)
189 REU Reunión
190 RWA Ruanda
191 ROU Rumania Unión Europea
192 RUS Rusia, (la) Federación de
193 ESH Sahara Occidental
194 WSM Samoa
195 ASM Samoa Americana
196 BLM San Bartolomé
197 KNA San Cristóbal y Nieves
198 SMR San Marino
199 MAF San Martín (parte francesa)
200 SPM San Pedro y Miquelón
201 VCT San Vicente y las Granadinas
202 SHN Santa Helena, Ascensión y Tristán de Acuña
203 LCA Santa Lucía
204 STP Santo Tomé y Príncipe
205 SEN Senegal
206 SRB Serbia
207 SYC Seychelles
208 SLE Sierra leona
209 SGP Singapur
210 SXM Sint Maarten (parte holandesa)
211 SYR Siria, (la) República Árabe
212 SOM Somalia
213 LKA Sri Lanka
214 SWZ Suazilandia
215 ZAF Sudáfrica
216 SDN Sudán (el)
217 SSD Sudán del Sur
218 SWE Suecia Unión Europea
219 CHE Suiza
220 SUR Surinam
221 SJM Svalbard y Jan Mayen
222 THA Tailandia
223 TWN Taiwán (Provincia de China)
224 TZA Tanzania, República Unida de
225 TJK Tayikistán
226 IOT Territorio Británico del Océano Índico (el)
227 ATF Territorios Australes Franceses (los)
228 TLS Timor-Leste
229 TGO Togo
230 TKL Tokelau
231 TON Tonga
232 TTO Trinidad y Tobago
233 TUN Túnez
234 TKM Turkmenistán
235 TUR Turquía
236 TUV Tuvalu
237 UKR Ucrania
238 UGA Uganda
239 URY Uruguay
240 UZB Uzbekistán
241 VUT Vanuatu
242 VAT Santa Sede[Estado de la Ciudad del Vaticano] (la)
243 VEN Venezuela, República Bolivariana de
244 VNM Viet Nam
245 WLF Wallis y Futuna
246 YEM Yemen
247 DJI Yibuti
248 ZMB Zambia
249 ZWE Zimbabue
250 ZZZ Países no declarados

View File

@ -0,0 +1,44 @@
001;Sueldos, Salarios Rayas y Jornales;Gravado
002;Gratificación Anual (Aguinaldo);Gravado y Exento
003;Participación de los Trabajadores en las Utilidades PTU;Gravado y Exento
004;Reembolso de Gastos Médicos Dentales y Hospitalarios;Gravado y Exento
005;Fondo de Ahorro;Gravado y Exento
006;Caja de ahorro;Gravado y Exento
009;Contribuciones a Cargo del Trabajador Pagadas por el Patrón;Gravado
010;Premios por puntualidad;Gravado
011;Prima de Seguro de vida;Gravado y Exento
012;Seguro de Gastos Médicos Mayores;Gravado y Exento
013;Cuotas Sindicales Pagadas por el Patrón;Gravado
014;Subsidios por incapacidad;Gravado y Exento
015;Becas para trabajadores y/o hijos;Gravado y Exento
019;Horas extra;Gravado y Exento
020;Prima dominical;Gravado y Exento
021;Prima vacacional;Gravado y Exento
022;Prima por antigüedad;Gravado y Exento
023;Pagos por separación;Gravado y Exento
024;Seguro de retiro;Gravado y Exento
025;Indemnizaciones;Gravado y Exento
026;Reembolso por funeral;Gravado y Exento
027;Cuotas de seguridad social pagadas por el patrón;Exento
028;Comisiones;Gravado
029;Vales de despensa;Gravado y Exento
030;Vales de restaurante;Gravado y Exento
031;Vales de gasolina;Gravado y Exento
032;Vales de ropa;Gravado y Exento
033;Ayuda para renta;Gravado y Exento
034;Ayuda para artículos escolares;Gravado y Exento
035;Ayuda para anteojos;Gravado y Exento
036;Ayuda para transporte;Gravado y Exento
037;Ayuda para gastos de funeral;Gravado y Exento
038;Otros ingresos por salarios;Gravado y Exento
039;Jubilaciones, pensiones o haberes de retiro;Gravado y Exento
044;Jubilaciones, pensiones o haberes de retiro en parcialidades;Gravado y Exento
045;Ingresos en acciones o títulos valor que representan bienes;Gravado y Exento
046;Ingresos asimilados a salarios;Gravado y Exento
047;Alimentación diferentes a los establecidos en el Art 94 último párrafo LISR;Gravado y Exento
048;Habitación;Gravado y Exento
049;Premios por asistencia;Gravado
050;Viáticos;Gravado y Exento
051;Pagos por gratificaciones, primas, compensaciones, recompensas u otros a extrabajadores derivados de jubilación en parcialidades;Gravado y Exento
052;Pagos que se realicen a extrabajadores que obtengan una jubilación en parcialidades derivados de la ejecución de resoluciones judicial o de un laudo;Gravado y Exento
053;Pagos que se realicen a extrabajadores que obtengan una jubilación en una sola exhibición derivados de la ejecución de resoluciones judicial o de un laudo;Gravado y Exento
1 001 Sueldos, Salarios Rayas y Jornales Gravado
2 002 Gratificación Anual (Aguinaldo) Gravado y Exento
3 003 Participación de los Trabajadores en las Utilidades PTU Gravado y Exento
4 004 Reembolso de Gastos Médicos Dentales y Hospitalarios Gravado y Exento
5 005 Fondo de Ahorro Gravado y Exento
6 006 Caja de ahorro Gravado y Exento
7 009 Contribuciones a Cargo del Trabajador Pagadas por el Patrón Gravado
8 010 Premios por puntualidad Gravado
9 011 Prima de Seguro de vida Gravado y Exento
10 012 Seguro de Gastos Médicos Mayores Gravado y Exento
11 013 Cuotas Sindicales Pagadas por el Patrón Gravado
12 014 Subsidios por incapacidad Gravado y Exento
13 015 Becas para trabajadores y/o hijos Gravado y Exento
14 019 Horas extra Gravado y Exento
15 020 Prima dominical Gravado y Exento
16 021 Prima vacacional Gravado y Exento
17 022 Prima por antigüedad Gravado y Exento
18 023 Pagos por separación Gravado y Exento
19 024 Seguro de retiro Gravado y Exento
20 025 Indemnizaciones Gravado y Exento
21 026 Reembolso por funeral Gravado y Exento
22 027 Cuotas de seguridad social pagadas por el patrón Exento
23 028 Comisiones Gravado
24 029 Vales de despensa Gravado y Exento
25 030 Vales de restaurante Gravado y Exento
26 031 Vales de gasolina Gravado y Exento
27 032 Vales de ropa Gravado y Exento
28 033 Ayuda para renta Gravado y Exento
29 034 Ayuda para artículos escolares Gravado y Exento
30 035 Ayuda para anteojos Gravado y Exento
31 036 Ayuda para transporte Gravado y Exento
32 037 Ayuda para gastos de funeral Gravado y Exento
33 038 Otros ingresos por salarios Gravado y Exento
34 039 Jubilaciones, pensiones o haberes de retiro Gravado y Exento
35 044 Jubilaciones, pensiones o haberes de retiro en parcialidades Gravado y Exento
36 045 Ingresos en acciones o títulos valor que representan bienes Gravado y Exento
37 046 Ingresos asimilados a salarios Gravado y Exento
38 047 Alimentación diferentes a los establecidos en el Art 94 último párrafo LISR Gravado y Exento
39 048 Habitación Gravado y Exento
40 049 Premios por asistencia Gravado
41 050 Viáticos Gravado y Exento
42 051 Pagos por gratificaciones, primas, compensaciones, recompensas u otros a extrabajadores derivados de jubilación en parcialidades Gravado y Exento
43 052 Pagos que se realicen a extrabajadores que obtengan una jubilación en parcialidades derivados de la ejecución de resoluciones judicial o de un laudo Gravado y Exento
44 053 Pagos que se realicen a extrabajadores que obtengan una jubilación en una sola exhibición derivados de la ejecución de resoluciones judicial o de un laudo Gravado y Exento

View File

@ -0,0 +1,13 @@
2;Sueldos y salarios
3;Jubilados
4;Pensionados
5;Asimilados a salarios, Miembros de las Sociedades Cooperativas de Producción
6;Asimilados a salarios, Integrantes de Sociedades y Asociaciones Civiles
7;Asimilados a salarios, Miembros de consejos directivos, de vigilancia, consultivos, honorarios a administradores, comisarios y gerentes generales
8;Asimilados a salarios, Actividad empresarial (comisionistas)
9;Asimilados a salarios, Honorarios asimilados a salarios
10;Asimilados a salarios, Ingresos acciones o títulos valor
11;Asimilados otros
12;Jubilados o Pensionados
13;Indemnización o Separación
99;Otro Regimen
1 2 Sueldos y salarios
2 3 Jubilados
3 4 Pensionados
4 5 Asimilados a salarios, Miembros de las Sociedades Cooperativas de Producción
5 6 Asimilados a salarios, Integrantes de Sociedades y Asociaciones Civiles
6 7 Asimilados a salarios, Miembros de consejos directivos, de vigilancia, consultivos, honorarios a administradores, comisarios y gerentes generales
7 8 Asimilados a salarios, Actividad empresarial (comisionistas)
8 9 Asimilados a salarios, Honorarios asimilados a salarios
9 10 Asimilados a salarios, Ingresos acciones o títulos valor
10 11 Asimilados otros
11 12 Jubilados o Pensionados
12 13 Indemnización o Separación
13 99 Otro Regimen

View File

@ -0,0 +1,19 @@
601;"General de Ley Personas Morales";No;Sí;2022-01-01;
603;"Personas Morales con Fines no Lucrativos";No;Sí;2022-01-01;
605;"Sueldos y Salarios e Ingresos Asimilados a Salarios";Sí;No;2022-01-01;
606;Arrendamiento;Sí;No;2022-01-01;
607;"Régimen de Enajenación o Adquisición de Bienes";Sí;No;2022-01-01;
608;"Demás ingresos";Sí;No;2022-01-01;
610;"Residentes en el Extranjero sin Establecimiento Permanente en México";Sí;Sí;2022-01-01;
611;"Ingresos por Dividendos (socios y accionistas)";Sí;No;2022-01-01;
612;"Personas Físicas con Actividades Empresariales y Profesionales";Sí;No;2022-01-01;
614;"Ingresos por intereses";Sí;No;2022-01-01;
615;"Régimen de los ingresos por obtención de premios";Sí;No;2022-01-01;
616;"Sin obligaciones fiscales";Sí;No;2022-01-01;
620;"Sociedades Cooperativas de Producción que optan por diferir sus ingresos";No;Sí;2022-01-01;
621;"Incorporación Fiscal";Sí;No;2022-01-01;
622;"Actividades Agrícolas, Ganaderas, Silvícolas y Pesqueras";No;Sí;2022-01-01;
623;"Opcional para Grupos de Sociedades";No;Sí;2022-01-01;
624;Coordinados;No;Sí;2022-01-01;
625;"Régimen de las Actividades Empresariales con ingresos a través de Plataformas Tecnológicas";Sí;No;2022-01-01;
626;"Régimen Simplificado de Confianza";Sí;Sí;2022-01-01;
1 601 General de Ley Personas Morales No 2022-01-01
2 603 Personas Morales con Fines no Lucrativos No 2022-01-01
3 605 Sueldos y Salarios e Ingresos Asimilados a Salarios No 2022-01-01
4 606 Arrendamiento No 2022-01-01
5 607 Régimen de Enajenación o Adquisición de Bienes No 2022-01-01
6 608 Demás ingresos No 2022-01-01
7 610 Residentes en el Extranjero sin Establecimiento Permanente en México 2022-01-01
8 611 Ingresos por Dividendos (socios y accionistas) No 2022-01-01
9 612 Personas Físicas con Actividades Empresariales y Profesionales No 2022-01-01
10 614 Ingresos por intereses No 2022-01-01
11 615 Régimen de los ingresos por obtención de premios No 2022-01-01
12 616 Sin obligaciones fiscales No 2022-01-01
13 620 Sociedades Cooperativas de Producción que optan por diferir sus ingresos No 2022-01-01
14 621 Incorporación Fiscal No 2022-01-01
15 622 Actividades Agrícolas, Ganaderas, Silvícolas y Pesqueras No 2022-01-01
16 623 Opcional para Grupos de Sociedades No 2022-01-01
17 624 Coordinados No 2022-01-01
18 625 Régimen de las Actividades Empresariales con ingresos a través de Plataformas Tecnológicas No 2022-01-01
19 626 Régimen Simplificado de Confianza 2022-01-01

View File

@ -0,0 +1,24 @@
G01;"Adquisición de mercancías.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625,626"
G02;"Devoluciones, descuentos o bonificaciones.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 616, 620, 621, 622, 623, 624, 625,626"
G03;"Gastos en general.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I01;Construcciones.;Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I02;"Mobiliario y equipo de oficina por inversiones.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I03;"Equipo de transporte.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I04;"Equipo de computo y accesorios.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I05;"Dados, troqueles, moldes, matrices y herramental.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I06;"Comunicaciones telefónicas.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I07;"Comunicaciones satelitales.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
I08;"Otra maquinaria y equipo.";Sí;Sí;2022-01-01;;"601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626"
D01;"Honorarios médicos, dentales y gastos hospitalarios.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D02;"Gastos médicos por incapacidad o discapacidad.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D03;"Gastos funerales.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D04;Donativos.;Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D05;"Intereses reales efectivamente pagados por créditos hipotecarios (casa habitación).";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D06;"Aportaciones voluntarias al SAR.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D07;"Primas por seguros de gastos médicos.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D08;"Gastos de transportación escolar obligatoria.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D09;"Depósitos en cuentas para el ahorro, primas que tengan como base planes de pensiones.";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
D10;"Pagos por servicios educativos (colegiaturas).";Sí;No;2022-01-01;;"605, 606, 608, 611, 612, 614, 607, 615, 625"
S01;"Sin efectos fiscales.";Sí;Sí;2022-01-01;;"601, 603, 605, 606, 608, 610, 611, 612, 614, 616, 620, 621, 622, 623, 624, 607, 615, 625, 626"
CP01;Pagos;Sí;Sí;2022-01-01;;"601, 603, 605, 606, 608, 610, 611, 612, 614, 616, 620, 621, 622, 623, 624, 607, 615, 625, 626"
CN01;Nómina;Sí;No;2022-01-01;;605
1 G01 Adquisición de mercancías. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625,626
2 G02 Devoluciones, descuentos o bonificaciones. 2022-01-01 601, 603, 606, 612, 616, 620, 621, 622, 623, 624, 625,626
3 G03 Gastos en general. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
4 I01 Construcciones. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
5 I02 Mobiliario y equipo de oficina por inversiones. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
6 I03 Equipo de transporte. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
7 I04 Equipo de computo y accesorios. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
8 I05 Dados, troqueles, moldes, matrices y herramental. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
9 I06 Comunicaciones telefónicas. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
10 I07 Comunicaciones satelitales. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
11 I08 Otra maquinaria y equipo. 2022-01-01 601, 603, 606, 612, 620, 621, 622, 623, 624, 625, 626
12 D01 Honorarios médicos, dentales y gastos hospitalarios. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
13 D02 Gastos médicos por incapacidad o discapacidad. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
14 D03 Gastos funerales. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
15 D04 Donativos. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
16 D05 Intereses reales efectivamente pagados por créditos hipotecarios (casa habitación). No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
17 D06 Aportaciones voluntarias al SAR. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
18 D07 Primas por seguros de gastos médicos. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
19 D08 Gastos de transportación escolar obligatoria. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
20 D09 Depósitos en cuentas para el ahorro, primas que tengan como base planes de pensiones. No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
21 D10 Pagos por servicios educativos (colegiaturas). No 2022-01-01 605, 606, 608, 611, 612, 614, 607, 615, 625
22 S01 Sin efectos fiscales. 2022-01-01 601, 603, 605, 606, 608, 610, 611, 612, 614, 616, 620, 621, 622, 623, 624, 607, 615, 625, 626
23 CP01 Pagos 2022-01-01 601, 603, 605, 606, 608, 610, 611, 612, 614, 616, 620, 621, 622, 623, 624, 607, 615, 625, 626
24 CN01 Nómina No 2022-01-01 605

View File

@ -0,0 +1,23 @@
📄 Versión de los Catálogos SAT
-----------------------------------
📌 Archivo XLSX: catCFDI_V_4_20250227.xls
📅 Fecha de generación: 2025-03-10 23:49:15
-----------------------------------
📂 Archivos CSV generados:
- c_formapago.csv (22 filas)
- c_moneda.csv (183 filas)
- c_codigopostal.csv (95748 filas)
- c_regimenfiscal.csv (19 filas)
- c_pais.csv (250 filas)
- c_usocfdi.csv (24 filas)
- c_claveprodserv.csv (52513 filas)
- c_claveunidad.csv (2418 filas)
- c_aduana.csv (50 filas)
- c_colonia.csv (145366 filas)
- c_estado.csv (95 filas)
- c_localidad.csv (664 filas)
- c_municipio.csv (2463 filas)
-----------------------------------
🔗 Información del paquete:
- Packagist: https://packagist.org/packages/koneko/laravel-sat-catalogs
- Git Repo: https://git.koneko.mx/koneko/laravel-sat-catalogs

163
package.json Normal file
View File

@ -0,0 +1,163 @@
{
"name": "laravel-vuexy-admin-mexico",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build --watch"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/preset-env": "7.23.8",
"@rollup/plugin-html": "1.0.3",
"@tailwindcss/postcss": "^4.0.4",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"glob": "10.4.1",
"postcss": "8.4.49",
"sass": "1.77.5",
"tailwindcss": "^3.4.16",
"vite": "^5.2.13"
},
"overrides": {
"datatables.net": "1.13.11",
"datatables.net-bs5": "1.13.11",
"datatables.net-buttons": "2.4.3",
"datatables.net-buttons-bs5": "2.4.3",
"datatables.net-fixedcolumns": "4.3.1",
"datatables.net-fixedheader": "3.4.1",
"datatables.net-responsive": "2.5.1",
"datatables.net-rowgroup": "1.4.1",
"datatables.net-select": "1.7.1",
"prop-types": "15.8.1"
},
"resolutions": {
"datatables.net": "1.13.11",
"datatables.net-bs5": "1.13.11",
"datatables.net-buttons": "2.4.3",
"datatables.net-buttons-bs5": "2.4.3",
"datatables.net-fixedcolumns": "4.3.1",
"datatables.net-fixedheader": "3.4.1",
"datatables.net-responsive": "2.5.1",
"datatables.net-rowgroup": "1.4.1",
"datatables.net-select": "1.7.1",
"prop-types": "15.8.1"
},
"browserslist": [
">= 1%",
"last 2 versions",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"browsers": [
">= 1%",
"last 2 versions",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}
}
]
]
},
"dependencies": {
"@form-validation/bundle": "2.4.0",
"@form-validation/core": "2.4.0",
"@form-validation/plugin-auto-focus": "2.4.0",
"@form-validation/plugin-bootstrap5": "2.4.0",
"@form-validation/plugin-framework": "2.4.0",
"@form-validation/plugin-message": "2.4.0",
"@fortawesome/fontawesome-free": "6.5.2",
"@fullcalendar/core": "6.1.14",
"@fullcalendar/daygrid": "6.1.14",
"@fullcalendar/interaction": "6.1.14",
"@fullcalendar/list": "6.1.14",
"@fullcalendar/timegrid": "6.1.14",
"@popperjs/core": "2.11.8",
"@simonwep/pickr": "1.9.1",
"@yaireo/tagify": "4.18.3",
"animate.css": "4.1.1",
"aos": "2.3.4",
"apexcharts-clevision": "3.28.5",
"autosize": "6.0.1",
"block-ui": "2.70.1",
"bootstrap": "5.3.3",
"bootstrap-datepicker": "1.10.0",
"bootstrap-daterangepicker": "3.1.0",
"bootstrap-maxlength": "^2.0.0",
"bootstrap-select": "1.14.0-beta3",
"bootstrap-table": "^1.24.0",
"bs-stepper": "1.7.0",
"chart.js": "4.4.3",
"cleave.js": "1.6.0",
"clipboard": "2.0.11",
"datatables.net-bs5": "1.13.11",
"datatables.net-buttons": "2.4.3",
"datatables.net-buttons-bs5": "2.4.3",
"datatables.net-fixedcolumns-bs5": "4.3.1",
"datatables.net-fixedheader-bs5": "3.4.1",
"datatables.net-responsive": "2.5.1",
"datatables.net-responsive-bs5": "2.5.1",
"datatables.net-rowgroup-bs5": "1.4.1",
"datatables.net-select-bs5": "1.7.1",
"dropzone": "5.9.3",
"flag-icons": "7.2.3",
"flatpickr": "4.6.13",
"hammerjs": "2.0.8",
"highlight.js": "11.9.0",
"jkanban": "1.3.1",
"jquery": "3.7.1",
"jquery-datatables-checkboxes": "1.2.14",
"jquery-sticky": "1.0.4",
"jquery.repeater": "1.2.1",
"jstree": "3.3.16",
"jszip": "3.10.1",
"katex": "^0.16.21",
"laravel-vite-plugin": "1.0.1",
"leaflet": "1.9.4",
"mapbox-gl": "3.0.1",
"masonry-layout": "4.2.2",
"moment": "2.30.1",
"node-waves": "0.7.6",
"nouislider": "15.7.2",
"numeral": "2.0.6",
"pdfmake": "0.2.10",
"perfect-scrollbar": "1.5.5",
"plyr": "3.7.8",
"quill": "^2.0.3",
"rateyo": "2.3.5",
"select2": "4.0.13",
"shepherd.js": "11.2.0",
"sortablejs": "1.15.2",
"spinkit": "2.0.1",
"sweetalert2": "^11.6.13",
"swiper": "11.0.7",
"tableexport.jquery.plugin": "^1.30.0",
"timepicker": "1.14.1",
"toastr": "2.1.4",
"typeahead.js": "0.11.1",
"xlsx": "^0.18.5"
}
}

33
phpunit.xml Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_STORE" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="PULSE_ENABLED" value="false"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};

25
public/.htaccess Normal file
View File

@ -0,0 +1,25 @@
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Handle X-XSRF-Token Header
RewriteCond %{HTTP:x-xsrf-token} .
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>

0
public/favicon.ico Normal file
View File

20
public/index.php Normal file
View File

@ -0,0 +1,20 @@
<?php
use Illuminate\Foundation\Application;
use Illuminate\Http\Request;
define('LARAVEL_START', microtime(true));
// Determine if the application is in maintenance mode...
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
require $maintenance;
}
// Register the Composer autoloader...
require __DIR__.'/../vendor/autoload.php';
// Bootstrap Laravel and handle the request...
/** @var Application $app */
$app = require_once __DIR__.'/../bootstrap/app.php';
$app->handleRequest(Request::capture());

2
public/robots.txt Normal file
View File

@ -0,0 +1,2 @@
User-agent: *
Disallow:

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,16 @@
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.390625" y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="5.39062" y="24.8921" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9.39062" y="6.34387" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5.39062" y="35.7661" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5.39062" y="46.64" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5.39062" y="57.514" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="35.6621" y="5.59766" width="65" height="8.06667" rx="1.5" stroke="#434968"/>
<rect x="38.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="82.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="88.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="93.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="60.5" y="20.9922" width="40" height="17.1333" rx="1.5" stroke="#434968"/>
<rect x="35.5" y="20.5" width="18.4118" height="17.1333" rx="1.5" stroke="#434968"/>
<rect x="35.6621" y="44.5254" width="65" height="17.1333" rx="1.5" stroke="#434968"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,16 @@
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.390625" y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="5.39062" y="24.8921" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9.39062" y="6.34387" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5.39062" y="35.7661" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5.39062" y="46.64" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5.39062" y="57.514" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="35.6621" y="5.59766" width="65" height="8.06667" rx="1.5" stroke="#DBDADE"/>
<rect x="38.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="82.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="88.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="93.1426" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="60.5" y="20.9922" width="40" height="17.1333" rx="1.5" stroke="#DBDADE"/>
<rect x="35.5" y="20.5" width="18.4118" height="17.1333" rx="1.5" stroke="#DBDADE"/>
<rect x="35.6621" y="44.5254" width="65" height="17.1333" rx="1.5" stroke="#DBDADE"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.28436C0 2.07522 1.79086 0.284363 4 0.284363H14V68.2844H4C1.79086 68.2844 0 66.4935 0 64.2844V4.28436Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="3" y="24.8921" width="8" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="3.5" y="6.34387" width="7" height="7" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="3" y="35.7661" width="8" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="3" y="46.64" width="8" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="3" y="57.514" width="8" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="21.8838" y="5.09766" width="76.8877" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="26.1094" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="51.4619" y="20.4922" width="47.7216" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="21.8838" y="20.4922" width="22.5942" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="21.8838" y="44.0254" width="77.2998" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.28436C0 2.07522 1.79086 0.284363 4 0.284363H14V68.2844H4C1.79086 68.2844 0 66.4935 0 64.2844V4.28436Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="3" y="24.8921" width="8" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="3.5" y="6.34387" width="7" height="7" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="3" y="35.7661" width="8" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="3" y="46.64" width="8" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="3" y="57.514" width="8" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="21.8838" y="5.09766" width="76.8877" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="26.1094" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="51.4619" y="20.4922" width="47.7216" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="21.8838" y="20.4922" width="22.5942" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="21.8838" y="44.0254" width="77.2998" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,11 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="19.7939" y="4.81323" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="22.7744" y="7.07983" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="66.7744" y="7.07983" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="72.7744" y="7.07983" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="78.7744" y="7.07983" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="45.2061" y="20.2078" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="19.7939" y="20.2078" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="19.7939" y="43.741" width="66.4121" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1000 B

View File

@ -0,0 +1,15 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="19.7939" y="5.0976" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="22.7744" y="7.3642" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="22.7744" y="7.3642" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="66.7744" y="7.3642" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="66.7744" y="7.3642" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="72.7744" y="7.3642" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="72.7744" y="7.3642" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="78.7744" y="7.3642" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="78.7744" y="7.3642" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="45.2061" y="20.4921" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="19.7939" y="20.4921" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="19.7939" y="44.0253" width="66.4121" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,5 @@
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.0001 15.7499C53.1651 15.7499 53.3289 15.7499 53.4914 15.7499C50.1778 18.8289 49.5351 23.8347 51.9635 27.6508C54.3919 31.4669 59.1988 33.005 63.3914 31.3074C61.2255 36.5188 55.5336 39.3191 50.0834 37.8545C44.6332 36.39 41.1115 31.114 41.8494 25.5189C42.5873 19.9238 47.3565 15.7413 53.0001 15.7399V15.7499Z" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M59.25 17C59.25 18.3807 60.3693 19.5 61.75 19.5C60.3693 19.5 59.25 20.6193 59.25 22C59.25 20.6193 58.1307 19.5 56.75 19.5C58.1307 19.5 59.25 18.3807 59.25 17" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M61.75 25C61.3358 25 61 25.3358 61 25.75C61 26.1642 61.3358 26.5 61.75 26.5V25ZM64.25 26.5C64.6642 26.5 65 26.1642 65 25.75C65 25.3358 64.6642 25 64.25 25V26.5ZM63.75 24.5C63.75 24.0858 63.4142 23.75 63 23.75C62.5858 23.75 62.25 24.0858 62.25 24.5H63.75ZM62.25 27C62.25 27.4142 62.5858 27.75 63 27.75C63.4142 27.75 63.75 27.4142 63.75 27H62.25ZM61.75 26.5H64.25V25H61.75V26.5ZM62.25 24.5V27H63.75V24.5H62.25Z" fill="#E1DEF5" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,5 @@
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.0001 15.7499C53.1651 15.7499 53.3289 15.7499 53.4914 15.7499C50.1778 18.8289 49.5351 23.8347 51.9635 27.6508C54.3919 31.4669 59.1988 33.005 63.3914 31.3074C61.2255 36.5188 55.5336 39.3191 50.0834 37.8545C44.6332 36.39 41.1115 31.114 41.8494 25.5189C42.5873 19.9238 47.3565 15.7413 53.0001 15.7399V15.7499Z" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M59.25 17C59.25 18.3807 60.3693 19.5 61.75 19.5C60.3693 19.5 59.25 20.6193 59.25 22C59.25 20.6193 58.1307 19.5 56.75 19.5C58.1307 19.5 59.25 18.3807 59.25 17" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M61.75 25C61.3358 25 61 25.3358 61 25.75C61 26.1642 61.3358 26.5 61.75 26.5V25ZM64.25 26.5C64.6642 26.5 65 26.1642 65 25.75C65 25.3358 64.6642 25 64.25 25V26.5ZM63.75 24.5C63.75 24.0858 63.4142 23.75 63 23.75C62.5858 23.75 62.25 24.0858 62.25 24.5H63.75ZM62.25 27C62.25 27.4142 62.5858 27.75 63 27.75C63.4142 27.75 63.75 27.4142 63.75 27H62.25ZM61.75 26.5H64.25V25H61.75V26.5ZM62.25 24.5V27H63.75V24.5H62.25Z" fill="#2F2B3D" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.217621" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.21762C0 2.00848 1.79086 0.217621 4 0.217621H28V68.2176H4C1.79086 68.2176 0 66.4268 0 64.2176V4.21762Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="5" y="24.8253" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9" y="6.27713" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="57.4472" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="34.7715" y="5.03091" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="37.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="81.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="87.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="93.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="59.6094" y="20.4254" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="34.7715" y="20.4254" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="34.7715" y="43.9586" width="66" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,26 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.217621" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.21762C0 2.00848 1.79086 0.217621 4 0.217621H28V68.2176H4C1.79086 68.2176 0 66.4268 0 64.2176V4.21762Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="5" y="24.8253" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="24.8253" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="9" y="6.27713" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9" y="6.27713" width="10" height="10" rx="2" stroke="#DBDADE"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="5" y="57.4472" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="57.4472" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="34.7715" y="5.03091" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="37.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="37.752" y="7.29752" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="81.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="81.752" y="7.29752" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="87.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="87.752" y="7.29752" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="93.752" y="7.29752" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="93.752" y="7.29752" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="59.6094" y="20.4254" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="34.7715" y="20.4254" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="34.7715" y="43.9586" width="66" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.28436C0 2.07522 1.79086 0.284363 4 0.284363H28V68.2844H4C1.79086 68.2844 0 66.4935 0 64.2844V4.28436Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="5" y="24.8921" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9" y="6.34387" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="35.7661" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="46.64" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="57.514" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="32.7715" y="5.09766" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="35.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="58.1836" y="20.4922" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="20.4922" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="44.0254" width="66.4121" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,26 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.28436C0 2.07522 1.79086 0.284363 4 0.284363H28V68.2844H4C1.79086 68.2844 0 66.4935 0 64.2844V4.28436Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="5" y="24.8921" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="24.8921" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="9" y="6.34387" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9" y="6.34387" width="10" height="10" rx="2" stroke="#DBDADE"/>
<rect x="5" y="35.7661" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="35.7661" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="5" y="46.64" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="46.64" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="5" y="57.514" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="57.514" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="32.7715" y="5.09766" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="35.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="35.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="58.1836" y="20.4922" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="20.4922" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="44.0254" width="66.4121" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,12 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="58.1836" y="6.28436" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="6.28436" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="33" y="30.2844" width="66" height="32" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,12 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="58.1836" y="6.28436" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="6.28436" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="33" y="30.2844" width="66" height="32" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,12 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
<rect x="45" y="14" width="48" height="15" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="15" y="14" width="23" height="15" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="15" y="34" width="78" height="34" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="15" width="78" height="9" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="20.4111" y="1.70111" width="6.11872" height="5.54323" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="34.5303" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
<rect x="49.2949" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
<rect x="64.0596" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
<rect x="78.8242" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,12 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
<rect x="45" y="14" width="48" height="15" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="15" y="14" width="23" height="15" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="15" y="34" width="78" height="34" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="15" width="78" height="9" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="20.4111" y="1.70111" width="6.11872" height="5.54323" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="34.5303" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
<rect x="49.2949" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
<rect x="64.0596" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
<rect x="78.8242" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,12 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
<rect x="44.8525" y="20.2079" width="47.7216" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="15.2744" y="20" width="22.5942" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="15.2744" y="43.7411" width="77.2998" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="15" y="5" width="78" height="9" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="20.4111" y="6.70111" width="6.11872" height="5.54323" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="34.5303" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
<rect x="49.2949" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
<rect x="64.0596" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
<rect x="78.8242" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,12 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
<rect x="44.8525" y="20.2079" width="47.7216" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="15.2744" y="20" width="22.5942" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="15.2744" y="43.7411" width="77.2998" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="15" y="5" width="78" height="9" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="20.4111" y="6.70111" width="6.11872" height="5.54323" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="34.5303" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
<rect x="49.2949" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
<rect x="64.0596" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
<rect x="78.8242" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,4 @@
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="52.666" cy="27" r="5" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.416 26.25C41.0018 26.25 40.666 26.5858 40.666 27C40.666 27.4142 41.0018 27.75 41.416 27.75V26.25ZM42.666 27.75C43.0802 27.75 43.416 27.4142 43.416 27C43.416 26.5858 43.0802 26.25 42.666 26.25V27.75ZM53.416 15.75C53.416 15.3358 53.0802 15 52.666 15C52.2518 15 51.916 15.3358 51.916 15.75H53.416ZM51.916 17C51.916 17.4142 52.2518 17.75 52.666 17.75C53.0802 17.75 53.416 17.4142 53.416 17H51.916ZM62.666 26.25C62.2518 26.25 61.916 26.5858 61.916 27C61.916 27.4142 62.2518 27.75 62.666 27.75V26.25ZM63.916 27.75C64.3302 27.75 64.666 27.4142 64.666 27C64.666 26.5858 64.3302 26.25 63.916 26.25V27.75ZM53.416 37C53.416 36.5858 53.0802 36.25 52.666 36.25C52.2518 36.25 51.916 36.5858 51.916 37H53.416ZM51.916 38.25C51.916 38.6642 52.2518 39 52.666 39C53.0802 39 53.416 38.6642 53.416 38.25H51.916ZM45.1963 18.4696C44.9034 18.1767 44.4285 18.1767 44.1356 18.4696C43.8427 18.7625 43.8427 19.2374 44.1356 19.5303L45.1963 18.4696ZM45.0106 20.4053C45.3035 20.6982 45.7784 20.6982 46.0713 20.4053C46.3642 20.1124 46.3642 19.6375 46.0713 19.3446L45.0106 20.4053ZM61.1964 19.5303C61.4893 19.2374 61.4893 18.7625 61.1964 18.4696C60.9035 18.1767 60.4286 18.1767 60.1357 18.4696L61.1964 19.5303ZM59.2607 19.3446C58.9679 19.6375 58.9679 20.1124 59.2607 20.4053C59.5536 20.6982 60.0285 20.6982 60.3214 20.4053L59.2607 19.3446ZM60.3214 33.5947C60.0285 33.3018 59.5536 33.3018 59.2607 33.5947C58.9679 33.8876 58.9679 34.3625 59.2607 34.6554L60.3214 33.5947ZM60.1357 35.5304C60.4286 35.8233 60.9035 35.8233 61.1964 35.5304C61.4893 35.2375 61.4893 34.7626 61.1964 34.4697L60.1357 35.5304ZM46.0713 34.6554C46.3642 34.3625 46.3642 33.8876 46.0713 33.5947C45.7784 33.3018 45.3035 33.3018 45.0106 33.5947L46.0713 34.6554ZM44.1356 34.4697C43.8427 34.7626 43.8427 35.2375 44.1356 35.5304C44.4285 35.8233 44.9034 35.8233 45.1963 35.5304L44.1356 34.4697ZM41.416 27.75H42.666V26.25H41.416V27.75ZM51.916 15.75V17H53.416V15.75H51.916ZM62.666 27.75H63.916V26.25H62.666V27.75ZM51.916 37V38.25H53.416V37H51.916ZM44.1356 19.5303L45.0106 20.4053L46.0713 19.3446L45.1963 18.4696L44.1356 19.5303ZM60.1357 18.4696L59.2607 19.3446L60.3214 20.4053L61.1964 19.5303L60.1357 18.4696ZM59.2607 34.6554L60.1357 35.5304L61.1964 34.4697L60.3214 33.5947L59.2607 34.6554ZM45.0106 33.5947L44.1356 34.4697L45.1963 35.5304L46.0713 34.6554L45.0106 33.5947Z" fill="#E1DEF5" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,4 @@
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="52.667" cy="27" r="5" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M41.417 26.25C41.0028 26.25 40.667 26.5858 40.667 27C40.667 27.4142 41.0028 27.75 41.417 27.75V26.25ZM42.667 27.75C43.0812 27.75 43.417 27.4142 43.417 27C43.417 26.5858 43.0812 26.25 42.667 26.25V27.75ZM53.417 15.75C53.417 15.3358 53.0812 15 52.667 15C52.2528 15 51.917 15.3358 51.917 15.75H53.417ZM51.917 17C51.917 17.4142 52.2528 17.75 52.667 17.75C53.0812 17.75 53.417 17.4142 53.417 17H51.917ZM62.667 26.25C62.2528 26.25 61.917 26.5858 61.917 27C61.917 27.4142 62.2528 27.75 62.667 27.75V26.25ZM63.917 27.75C64.3312 27.75 64.667 27.4142 64.667 27C64.667 26.5858 64.3312 26.25 63.917 26.25V27.75ZM53.417 37C53.417 36.5858 53.0812 36.25 52.667 36.25C52.2528 36.25 51.917 36.5858 51.917 37H53.417ZM51.917 38.25C51.917 38.6642 52.2528 39 52.667 39C53.0812 39 53.417 38.6642 53.417 38.25H51.917ZM45.1973 18.4696C44.9044 18.1767 44.4295 18.1767 44.1366 18.4696C43.8437 18.7625 43.8437 19.2374 44.1366 19.5303L45.1973 18.4696ZM45.0116 20.4053C45.3045 20.6982 45.7794 20.6982 46.0723 20.4053C46.3652 20.1124 46.3652 19.6375 46.0723 19.3446L45.0116 20.4053ZM61.1974 19.5303C61.4903 19.2374 61.4903 18.7625 61.1974 18.4696C60.9045 18.1767 60.4296 18.1767 60.1367 18.4696L61.1974 19.5303ZM59.2617 19.3446C58.9688 19.6375 58.9688 20.1124 59.2617 20.4053C59.5546 20.6982 60.0295 20.6982 60.3224 20.4053L59.2617 19.3446ZM60.3224 33.5947C60.0295 33.3018 59.5546 33.3018 59.2617 33.5947C58.9688 33.8876 58.9688 34.3625 59.2617 34.6554L60.3224 33.5947ZM60.1367 35.5304C60.4296 35.8233 60.9045 35.8233 61.1974 35.5304C61.4903 35.2375 61.4903 34.7626 61.1974 34.4697L60.1367 35.5304ZM46.0723 34.6554C46.3652 34.3625 46.3652 33.8876 46.0723 33.5947C45.7794 33.3018 45.3045 33.3018 45.0116 33.5947L46.0723 34.6554ZM44.1366 34.4697C43.8437 34.7626 43.8437 35.2375 44.1366 35.5304C44.4295 35.8233 44.9044 35.8233 45.1973 35.5304L44.1366 34.4697ZM41.417 27.75H42.667V26.25H41.417V27.75ZM51.917 15.75V17H53.417V15.75H51.917ZM62.667 27.75H63.917V26.25H62.667V27.75ZM51.917 37V38.25H53.417V37H51.917ZM44.1366 19.5303L45.0116 20.4053L46.0723 19.3446L45.1973 18.4696L44.1366 19.5303ZM60.1367 18.4696L59.2617 19.3446L60.3224 20.4053L61.1974 19.5303L60.1367 18.4696ZM59.2617 34.6554L60.1367 35.5304L61.1974 34.4697L60.3224 33.5947L59.2617 34.6554ZM45.0116 33.5947L44.1366 34.4697L45.1973 35.5304L46.0723 34.6554L45.0116 33.5947Z" fill="#2F2B3D" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,15 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="6.10352e-05" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="5.30176" y="4.2464" width="24.561" height="59.3336" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="10.5225" y="17.381" width="14.1209" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="10.5225" y="26.3365" width="10.0694" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="10.5225" y="35.2919" width="12.6207" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="10.5225" y="44.2475" width="6.20526" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="10.5225" y="53.2032" width="8.24653" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="36.1953" y="4.2464" width="63.5883" height="59.3336" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="44.5977" y="14.6132" width="14.1209" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="44.5977" y="23.5687" width="33.432" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="44.5977" y="32.5241" width="42" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="44.5977" y="41.4794" width="33.432" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="44.5977" y="50.4352" width="5.88587" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,25 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284424" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="5.30176" y="4.53076" width="24.561" height="59.3336" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="10.5225" y="17.6654" width="14.1209" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="10.5225" y="17.6654" width="14.1209" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="10.5225" y="26.6208" width="10.0694" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="10.5225" y="26.6208" width="10.0694" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="10.5225" y="35.5763" width="12.6207" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="10.5225" y="35.5763" width="12.6207" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="10.5225" y="44.5319" width="6.20526" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="10.5225" y="44.5319" width="6.20526" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="10.5225" y="53.4875" width="8.24653" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="10.5225" y="53.4875" width="8.24653" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="36.1953" y="4.53076" width="63.5883" height="59.3336" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="44.5977" y="14.8976" width="14.1209" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="44.5977" y="14.8976" width="14.1209" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="44.5977" y="23.853" width="33.432" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="44.5977" y="23.853" width="33.432" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="44.5977" y="32.8085" width="42" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="44.5977" y="32.8085" width="42" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="44.5977" y="41.7638" width="33.432" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="44.5977" y="41.7638" width="33.432" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
<rect x="44.5977" y="50.7196" width="5.88587" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="44.5977" y="50.7196" width="5.88587" height="2.15549" rx="1.07775" stroke="#DBDADE"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,15 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="6.10352e-05" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="74.8896" y="4.2464" width="24.561" height="59.3336" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="80.1104" y="17.381" width="14.1209" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="84.1611" y="26.3365" width="10.0694" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="81.6104" y="35.2919" width="12.6207" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="88.0254" y="44.2475" width="6.20526" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="85.9844" y="53.2032" width="8.24653" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5.30176" y="4.2464" width="63.5883" height="59.3336" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="46.5879" y="14.6132" width="14.1209" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="27.2773" y="23.5687" width="33.432" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="18.709" y="32.5241" width="42" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="27.2773" y="41.4794" width="33.432" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
<rect x="54.8232" y="50.4352" width="5.88587" height="2.15549" rx="1.07775" fill="#8692D0" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,15 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284424" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="74.8896" y="4.53076" width="24.561" height="59.3336" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="80.1104" y="17.6654" width="14.1209" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="84.1611" y="26.6208" width="10.0694" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="81.6104" y="35.5763" width="12.6207" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="88.0254" y="44.5319" width="6.20526" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="85.9844" y="53.4875" width="8.24653" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5.30176" y="4.53076" width="63.5883" height="59.3336" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="46.5879" y="14.8976" width="14.1209" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="27.2773" y="23.853" width="33.432" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="18.709" y="32.8085" width="42" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="27.2773" y="41.7638" width="33.432" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
<rect x="54.8232" y="50.7196" width="5.88587" height="2.15549" rx="1.07775" fill="#4B465C" fill-opacity="0.16"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,23 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.217651" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.21765C0 2.00851 1.79086 0.217651 4 0.217651H28V68.2177H4C1.79086 68.2177 0 66.4268 0 64.2177V4.21765Z" fill="#8692D0"/>
<path d="M0 4.21765C0 2.00851 1.79086 0.217651 4 0.217651H28V68.2177H4C1.79086 68.2177 0 66.4268 0 64.2177V4.21765Z" fill="black" fill-opacity="0.45"/>
<rect x="5" y="24.8254" width="18" height="2.87399" rx="1.43699" fill="#8692D0"/>
<rect x="5" y="24.8254" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.3"/>
<rect x="9" y="6.27716" width="10" height="10" rx="2" fill="#8692D0"/>
<rect x="9" y="6.27716" width="10" height="10" rx="2" fill="white" fill-opacity="0.3"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" fill="#8692D0"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.3"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" fill="#8692D0"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.3"/>
<rect x="5" y="57.4473" width="18" height="2.87399" rx="1.43699" fill="#8692D0"/>
<rect x="5" y="57.4473" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.3"/>
<rect x="34.7715" y="5.03094" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="37.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="81.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="87.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="93.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="59.6094" y="20.4255" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="34.7715" y="20.4255" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="34.7715" y="43.9587" width="66" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,23 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.217651" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.21765C0 2.00851 1.79086 0.217651 4 0.217651H28V68.2177H4C1.79086 68.2177 0 66.4268 0 64.2177V4.21765Z" fill="#4B465C"/>
<path d="M0 4.21765C0 2.00851 1.79086 0.217651 4 0.217651H28V68.2177H4C1.79086 68.2177 0 66.4268 0 64.2177V4.21765Z" fill="white" fill-opacity="0.2"/>
<rect x="5" y="24.8254" width="18" height="2.87399" rx="1.43699" fill="#4B465C"/>
<rect x="5" y="24.8254" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.6"/>
<rect x="9" y="6.27716" width="10" height="10" rx="2" fill="#4B465C"/>
<rect x="9" y="6.27716" width="10" height="10" rx="2" fill="white" fill-opacity="0.6"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" fill="#4B465C"/>
<rect x="5" y="35.6993" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.6"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" fill="#4B465C"/>
<rect x="5" y="46.5733" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.6"/>
<rect x="5" y="57.4473" width="18" height="2.87399" rx="1.43699" fill="#4B465C"/>
<rect x="5" y="57.4473" width="18" height="2.87399" rx="1.43699" fill="white" fill-opacity="0.6"/>
<rect x="34.7715" y="5.03094" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="37.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="81.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="87.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="93.752" y="7.29755" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="59.6094" y="20.4255" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="34.7715" y="20.4255" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="34.7715" y="43.9587" width="66" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="32.7715" y="5.38202" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="35.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="79.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="85.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="91.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="58.1836" y="20.7766" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="20.7766" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="44.3098" width="66.4121" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="32.7715" y="5.38202" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="35.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="79.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="85.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="91.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="58.1836" y="20.7766" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="20.7766" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="44.3098" width="66.4121" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<path d="M32.7715 0.284363H98.7715V7.35103C98.7715 8.4556 97.8761 9.35103 96.7715 9.35103H34.7715C33.6669 9.35103 32.7715 8.4556 32.7715 7.35103V0.284363Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="35.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="79.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="85.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="91.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="58.1836" y="13" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="13" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="33" y="36" width="66" height="28" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<path d="M32.7715 0.284363H98.7715V7.35103C98.7715 8.4556 97.8761 9.35103 96.7715 9.35103H34.7715C33.6669 9.35103 32.7715 8.4556 32.7715 7.35103V0.284363Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="35.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="79.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="85.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="91.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="58.1836" y="13" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="13" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="33" y="36" width="66" height="28" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,10 @@
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="42.082" y="17" width="22.5" height="15" rx="1" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M47.082 37H59.582" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M49.582 32V37" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M57.082 32V37" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M49.582 27V22" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M53.332 27V25.75" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M57.082 27V24.5" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M53.332 27V25.75" stroke="#E1DEF5" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,10 @@
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="42.084" y="17" width="22.5" height="15" rx="1" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M47.084 37H59.584" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M49.584 32V37" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M57.084 32V37" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M49.584 27V22" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M53.334 27V25.75" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M57.084 27V24.5" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M53.334 27V25.75" stroke="#2F2B3D" stroke-opacity="0.9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,17 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.28436C0 2.07522 1.79086 0.284363 4 0.284363H28V68.2844H4C1.79086 68.2844 0 66.4935 0 64.2844V4.28436Z" fill="#8692D0" fill-opacity="0.08"/>
<rect x="5" y="24.8921" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="9" y="6.34387" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="35.7661" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="46.64" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="5" y="57.514" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
<rect x="32.7715" y="5.09766" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="35.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="58.1836" y="20.4922" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="20.4922" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="32.7715" y="44.0254" width="66.4121" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,26 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284363" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<path d="M0 4.28436C0 2.07522 1.79086 0.284363 4 0.284363H28V68.2844H4C1.79086 68.2844 0 66.4935 0 64.2844V4.28436Z" fill="#4B465C" fill-opacity="0.08"/>
<rect x="5" y="24.8921" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="24.8921" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="9" y="6.34387" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
<rect x="9" y="6.34387" width="10" height="10" rx="2" stroke="#DBDADE"/>
<rect x="5" y="35.7661" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="35.7661" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="5" y="46.64" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="46.64" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="5" y="57.514" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
<rect x="5" y="57.514" width="18" height="2.87399" rx="1.43699" stroke="#DBDADE"/>
<rect x="32.7715" y="5.09766" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="35.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="35.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="79.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="85.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="91.752" y="7.36426" width="4" height="4.53333" rx="1" stroke="#DBDADE"/>
<rect x="58.1836" y="20.4922" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="20.4922" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="32.7715" y="44.0254" width="66.4121" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,11 @@
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="6.10352e-05" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="6.81641" y="4.81329" width="92.3672" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="10.3604" y="7.0799" width="5" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="76.6455" y="7.0799" width="5" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="83.6455" y="7.0799" width="5" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="90.6455" y="7.0799" width="5" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
<rect x="42.1602" y="20.2078" width="57.0236" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="6.81641" y="20.2078" width="26.9982" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
<rect x="6.81641" y="43.741" width="92.3672" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,11 @@
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.284424" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
<rect x="6.81641" y="5.09766" width="92.3672" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="10.3604" y="7.36426" width="5" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="76.6455" y="7.36426" width="5" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="83.6455" y="7.36426" width="5" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="90.6455" y="7.36426" width="5" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
<rect x="42.1602" y="20.4922" width="57.0236" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="6.81641" y="20.4922" width="26.9982" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
<rect x="6.81641" y="44.0254" width="92.3672" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Some files were not shown because too many files have changed in this diff Show More