From e1c08ac5c85e4d3fc4290d125bc1c504289f06c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Leonardo=20Brand=C3=A3o?= <85573492+victorbrandaao@users.noreply.github.com> Date: Sun, 17 Nov 2024 01:16:21 -0300 Subject: [PATCH 01/48] =?UTF-8?q?Adi=C3=A7=C3=A3o=20de=20um=20novo=20m?= =?UTF-8?q?=C3=A9todo=20IsValidCompe=20no=20arquivo=20Program.cs=20(#582)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Adição de um novo método IsValidCompe no arquivo Program.cs * Delete examples/dotnet/.idea/.idea.ConsoleApp/.idea/.gitignore * Delete examples/dotnet/.idea/.idea.ConsoleApp/.idea/vcs.xml * Update Program.cs * Update Program.cs --------- Co-authored-by: Guilherme Branco Stracini --- examples/dotnet/Program.cs | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/examples/dotnet/Program.cs b/examples/dotnet/Program.cs index baaebea2..bb889594 100644 --- a/examples/dotnet/Program.cs +++ b/examples/dotnet/Program.cs @@ -1,3 +1,4 @@ + namespace ConsoleApp { using System; @@ -41,8 +42,27 @@ static void Main() /// private static string GetCompeFromUser() { - Console.Write("Buscar COMPE (3 dígitos): "); - return Console.ReadLine(); + string compe; + do + { + Console.Write("Buscar COMPE (3 dígitos): "); + compe = Console.ReadLine(); + } while (!IsValidCompe(compe)); + + return compe; + } + + /// + /// Validates if the given is a valid COMPE code. + /// + /// A string representing the COMPE code to validate. + /// + /// if the is exactly 3 characters long + /// and consists only of numeric digits; otherwise, . + /// + private static bool IsValidCompe(string compe) + { + return compe.Length == 3 && compe.All(char.IsDigit); } /// From c5e3fe7a1296bc0c5b87d8e2557fd7b49be52152 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Sun, 17 Nov 2024 04:16:56 +0000 Subject: [PATCH 02/48] Delete .github/workflows/snorkell-auto-documentation.yml --- .../workflows/snorkell-auto-documentation.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/snorkell-auto-documentation.yml diff --git a/.github/workflows/snorkell-auto-documentation.yml b/.github/workflows/snorkell-auto-documentation.yml deleted file mode 100644 index 926c7e53..00000000 --- a/.github/workflows/snorkell-auto-documentation.yml +++ /dev/null @@ -1,19 +0,0 @@ -# This workflow will improvise current file with AI genereated documentation and Create new PR - -name: Penify - Revolutionizing Documentation on GitHub - -on: - push: - branches: ["main"] - workflow_dispatch: - -jobs: - Documentation: - runs-on: ubuntu-latest - steps: - - name: Penify DocGen Client - uses: SingularityX-ai/snorkell-documentation-client@v1.0.0 - with: - client_id: ${{ secrets.SNORKELL_CLIENT_ID }} - api_key: ${{ secrets.SNORKELL_API_KEY }} - branch_name: "main" \ No newline at end of file From 15ceb571c3b83b82091c89650aabebf2e7a416cb Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 04:21:33 +0000 Subject: [PATCH 03/48] style: format code with ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format (#589) * style: format code with ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format This commit fixes the style issues introduced in e1c08ac according to the output from ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format. Details: None * CSharpier format --------- Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> Co-authored-by: gstraccini[bot] <150967461+gstraccini[bot]@users.noreply.github.com> --- .config/dotnet-tools.json | 2 +- examples/dotnet/Program.cs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 67322957..aabb059c 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "0.29.1", + "version": "0.29.2", "commands": [ "dotnet-csharpier" ], diff --git a/examples/dotnet/Program.cs b/examples/dotnet/Program.cs index bb889594..2af54635 100644 --- a/examples/dotnet/Program.cs +++ b/examples/dotnet/Program.cs @@ -1,4 +1,3 @@ - namespace ConsoleApp { using System; @@ -48,7 +47,7 @@ private static string GetCompeFromUser() Console.Write("Buscar COMPE (3 dígitos): "); compe = Console.ReadLine(); } while (!IsValidCompe(compe)); - + return compe; } From 28d827d0c483226008dc69febbb540a02ba31592 Mon Sep 17 00:00:00 2001 From: "penify-dev[bot]" <146478655+penify-dev[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:27:03 +0000 Subject: [PATCH 04/48] penify/config_31e1c main --- .../workflows/snorkell-auto-documentation.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/snorkell-auto-documentation.yml diff --git a/.github/workflows/snorkell-auto-documentation.yml b/.github/workflows/snorkell-auto-documentation.yml new file mode 100644 index 00000000..926c7e53 --- /dev/null +++ b/.github/workflows/snorkell-auto-documentation.yml @@ -0,0 +1,19 @@ +# This workflow will improvise current file with AI genereated documentation and Create new PR + +name: Penify - Revolutionizing Documentation on GitHub + +on: + push: + branches: ["main"] + workflow_dispatch: + +jobs: + Documentation: + runs-on: ubuntu-latest + steps: + - name: Penify DocGen Client + uses: SingularityX-ai/snorkell-documentation-client@v1.0.0 + with: + client_id: ${{ secrets.SNORKELL_CLIENT_ID }} + api_key: ${{ secrets.SNORKELL_API_KEY }} + branch_name: "main" \ No newline at end of file From 9b8a38b710bd2769992998a04b73d7fd00e4d4b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:27:16 +0000 Subject: [PATCH 05/48] docs(contributor): contrib-readme-action has updated readme --- README.md | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 450bf3e8..9b31f4a5 100644 --- a/README.md +++ b/README.md @@ -277,6 +277,13 @@ The data is automatically updated daily using a [tool](https://github.com/guibra Rafael Domiciano + + + victorbrandaao +
+ Victor Leonardo Brandão +
+ AmolKumarGupta @@ -298,6 +305,8 @@ The data is automatically updated daily using a [tool](https://github.com/guibra Rodrigo Castro + + vduggen @@ -337,6 +346,13 @@ The data is automatically updated daily using a [tool](https://github.com/guibra dependabot[bot] + + + penify-dev[bot] +
+ penify-dev[bot] +
+ stack-file[bot] @@ -350,28 +366,21 @@ The data is automatically updated daily using a [tool](https://github.com/guibra
codefactor-io[bot]
- - - - deepsource-io[bot] -
- deepsource-io[bot] -
- - penify-dev[bot] + + deepsource-autofix[bot]
- penify-dev[bot] + deepsource-autofix[bot]
- - deepsource-autofix[bot] + + deepsource-io[bot]
- deepsource-autofix[bot] + deepsource-io[bot]
From 7b3d70cc8312da5a8b0d90cb1e4ad9ab803e86c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:27:18 +0000 Subject: [PATCH 06/48] docs(contributor): contrib-readme-action has updated readme --- README.pt-br.md | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/README.pt-br.md b/README.pt-br.md index 9ea4f82b..5413e261 100644 --- a/README.pt-br.md +++ b/README.pt-br.md @@ -277,6 +277,13 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr Rafael Domiciano + + + victorbrandaao +
+ Victor Leonardo Brandão +
+ AmolKumarGupta @@ -298,6 +305,8 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr Rodrigo Castro + + vduggen @@ -337,6 +346,13 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr dependabot[bot] + + + penify-dev[bot] +
+ penify-dev[bot] +
+ stack-file[bot] @@ -350,28 +366,21 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr
codefactor-io[bot]
- - - - deepsource-io[bot] -
- deepsource-io[bot] -
- - penify-dev[bot] + + deepsource-autofix[bot]
- penify-dev[bot] + deepsource-autofix[bot]
- - deepsource-autofix[bot] + + deepsource-io[bot]
- deepsource-autofix[bot] + deepsource-io[bot]
From 64f8e2ffdd631ae71031b0bf389cc09f1c1b8391 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Wed, 20 Nov 2024 01:49:09 +0000 Subject: [PATCH 07/48] Update README.md +semver: minor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b31f4a5..9ea79f3f 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ![Bancos Brasileiros logo](https://raw.githubusercontent.com/guibranco/BancosBrasileiros/main/logo.png) -> [!Note] +> [!Important] > > Para a versão em Português *(PT_BR)* do README.md, [siga me](https://guibranco.github.io/BancosBrasileiros/README.pt-br.html) por favor. From 056d4620a22963a9511ba9a552565549f8a0ed39 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Wed, 20 Nov 2024 01:56:37 +0000 Subject: [PATCH 08/48] Update appveyor.yml --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index b5084521..e12c24f6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 6.0.{build} +version: 6.1.{build} skip_tags: true skip_branch_with_pr: true image: Visual Studio 2022 From 9e637a6d28a1a0057b16f4f840bf4ab820039312 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Wed, 20 Nov 2024 01:59:13 +0000 Subject: [PATCH 09/48] Update appveyor.yml (#592) From 8841c1bf1c97d948d559fa2bd1ff75b92d62d544 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Wed, 20 Nov 2024 12:08:36 +0000 Subject: [PATCH 10/48] Daily updates (bot) --- CHANGELOG.md | 47 +++++++++++++++ data/bancos.csv | 31 +++++----- data/bancos.json | 152 +++++++++++++++++++++++++++++++++++------------ data/bancos.md | 31 +++++----- data/bancos.sql | 31 +++++----- data/bancos.xml | 130 ++++++++++++++++++++++++++++++++-------- 6 files changed, 315 insertions(+), 107 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed44984f..153a9a88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,53 @@ ## Changelog +### 2024-11-20 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Added 3 banks + - 665 - STARK BANK S.A. - IP - 20.018.183/0001-80 + - 671 - ZERO - 26.264.220/0001-16 + - 662 - WE PAY OUT IP LTDA. - 32.708.748/0001-30 +- Updated 14 banks + - 15 - UBS BB CCTVM S.A. - 02.819.125/0001-73 + - **LongName** (STR): UBS Brasil Corretora de Câmbio, Títulos e Valores Mobiliários S.A. **->** UBS BB CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS S.A. + - **ShortName** (STR): UBS BRASIL CCTVM S.A. **->** UBS BB CCTVM S.A. + - 129 - UBS BB BI S.A. - 18.520.834/0001-93 + - **LongName** (STR): UBS Brasil Banco de Investimento S.A. **->** UBS BB BANCO DE INVESTIMENTO S.A. + - **ShortName** (STR): UBS BRASIL BI S.A. **->** UBS BB BI S.A. + - 136 - UNICRED DO BRASIL - 00.315.557/0001-11 + - **LongName** (STR): CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS UNICRED LTDA. - UNICRED DO BRASIL. **->** COOPERATIVA CENTRAL DE CRÉDITO UNICRED DO BRASIL - UNICRED DO BRASIL + - **ShortName** (STR): CONF NAC COOP CENTRAIS UNICRED **->** UNICRED DO BRASIL + - 271 - IB CCTVM S.A. - 27.842.177/0001-91 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-11-18 10:00:00 + - 273 - COOP SULCREDI AMPLEA - 08.253.539/0001-64 + - **LongName** (STR): Cooperativa de Crédito Rural de São Miguel do Oeste - Sulcredi/São Miguel **->** COOPERATIVA DE CREDITO SULCREDI AMPLEA + - **ShortName** (STR): CCR DE SÃO MIGUEL DO OESTE **->** COOP SULCREDI AMPLEA + - 320 - BOC BRASIL - 07.450.604/0001-89 + - **Products** (CTC): Null **->** Consignado, Imobiliário, Pessoal, Veículos + - 336 - BCO C6 S.A. - 31.872.495/0001-72 + - **SalaryPortability** (PCPS): Destinatário **->** Banco Folha e Destinatário + - 379 - CECM COOPERFORTE - 01.658.426/0001-08 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-11-25 09:00:00 + - 448 - HEMERA DTVM LTDA. - 39.669.186/0001-01 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-11-11 09:00:00 + - 530 - SER FINANCE SCD S.A. - 47.873.449/0001-28 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-11-13 09:00:00 + - 568 - BRCONDOS SCD S.A. - 49.933.388/0001-72 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-11-13 11:00:00 + - 593 - TRANSFEERA IP S.A. - 27.084.098/0001-69 + - **PixType** (SPI): IDRT **->** DRCT + - **DatePixStarted** (SPI): 2021-05-04 10:27:26 **->** 2024-11-04 09:10:00 + - 614 - NITRO SCD S.A. - 52.440.987/0001-69 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-11-05 09:00:00 + - 623 - BANCO PAN - 59.285.411/0001-13 + - **SalaryPortability** (PCPS): Destinatário **->** Banco Folha e Destinatário + ### 2024-10-18 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Updated 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index 7b2f850b..3483a48e 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -7,7 +7,7 @@ 011,61809182,61.809.182/0001-30,CREDIT SUISSE HEDGING-GRIFFO CORRETORA DE VALORES S.A,C.SUISSE HEDGING-GRIFFO CV S/A,RSFN,,,,,Não,Não,,,,,https://www.credit-suisse.com/br/pt.html,2011-06-28,,2021-05-05T09:11:12.7115317-03:00,2021-05-05T09:11:12.7115319-03:00 012,04866275,04.866.275/0001-63,Banco Inbursa S.A.,BANCO INBURSA,RSFN,Banco Múltiplo,DRCT,Sim,Não,Não,Não,Sim,Sim,,Consignado; Outros Créditos.; Pessoal; Veiculos,https://www.bancoinbursa.com,2017-05-04,2020-11-03 06:30:00,2021-05-05T09:11:12.7114560-03:00,2024-05-15T16:49:45.7301824+00:00 014,09274232,09.274.232/0001-02,STATE STREET BRASIL S.A. - BANCO COMERCIAL,STATE STREET BR S.A. BCO COMERCIAL,RSFN,Banco Comercial,,,,Não,Não,,,,,https://www.statestreet.com/br/en/individual#,2008-08-08,,2021-05-05T09:11:12.7114679-03:00,2021-10-23T20:54:59.5224714-03:00 -015,02819125,02.819.125/0001-73,UBS Brasil Corretora de Câmbio Títulos e Valores Mobiliários S.A.,UBS BRASIL CCTVM S.A.,RSFN,,,,,Não,Não,,,,,https://www.ubs.com/br/pt.html,2011-03-15,,2021-05-05T09:11:12.7114483-03:00,2021-05-05T09:11:12.7114485-03:00 +015,02819125,02.819.125/0001-73,UBS BB CORRETORA DE CÂMBIO TÍTULOS E VALORES MOBILIÁRIOS S.A.,UBS BB CCTVM S.A.,RSFN,,,,,Não,Não,,,,,https://www.ubs.com/br/pt.html,2011-03-15,,2021-05-05T09:11:12.7114483-03:00,2024-11-20T12:08:11.7801650+00:00 016,04715685,04.715.685/0001-03,COOPERATIVA DE CRÉDITO MÚTUO DOS DESPACHANTES DE TRÂNSITO DE SANTA CATARINA E RIO GRANDE DO SUL - SICOOB CREDITRAN,CCM DESP TRÂNS SC E RS,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,Capital de Giro; Cheque Especial; Consignado; Imobiário; Outros Créditos; Pessoal; PRONAMPE; Troca de Modalidade; Veículos,https://www.sicoob.com.br/web/sicoobcreditran/sicoob-creditran,2012-05-08,2020-11-03 06:30:00,2021-05-05T09:11:12.7114553-03:00,2024-05-15T16:49:45.7420980+00:00 017,42272526,42.272.526/0001-70,BNY Mellon Banco S.A.,BNY MELLON BCO S.A.,RSFN,Banco Comercial,,Não,Sim,Não,Não,,,,,https://www.bnymellon.com/br/pt.html,2012-11-19,,2021-05-05T09:11:12.7115161-03:00,2022-07-22T07:49:18.4024695+00:00 018,57839805,57.839.805/0001-40,Banco Tricury S.A.,BCO TRICURY S.A.,RSFN,Banco Múltiplo,,Não,Sim,Não,Não,,,,,https://www.bancotricury.com.br,2013-08-05,,2021-05-05T09:11:12.7115214-03:00,2022-07-22T07:49:18.4026223+00:00 @@ -72,13 +72,13 @@ 126,13220493,13.220.493/0001-17,BR Partners Banco de Investimento S.A.,BR PARTNERS BI,RSFN,,,,,Não,Não,,,,,,2013-01-04,,2021-05-05T09:11:12.7114810-03:00,2021-05-05T09:11:12.7114812-03:00 127,09512542,09.512.542/0001-18,Codepe Corretora de Valores e Câmbio S.A.,CODEPE CVC S.A.,Internet,,,,,Não,Não,,,,,,2012-11-09,,2021-05-05T09:11:12.7114690-03:00,2021-05-05T09:11:12.7114691-03:00 128,19307785,19.307.785/0001-78,BRAZA BANK S.A. BANCO DE CÂMBIO,BRAZA BANK S.A. BCO DE CÂMBIO,RSFN,Banco de Câmbio,,Sim,Não,Não,Não,Sim,Não,,,https://www.brazabank.com.br,2015-04-27,,2021-05-05T09:11:12.7114919-03:00,2024-05-15T16:49:45.7394853+00:00 -129,18520834,18.520.834/0001-93,UBS Brasil Banco de Investimento S.A.,UBS BRASIL BI S.A.,RSFN,,,,,Não,Não,,,,,https://www.ubs.com,2014-03-12,,2021-05-05T09:11:12.7114915-03:00,2021-05-05T09:11:12.7114917-03:00 +129,18520834,18.520.834/0001-93,UBS BB BANCO DE INVESTIMENTO S.A.,UBS BB BI S.A.,RSFN,,,,,Não,Não,,,,,https://www.ubs.com,2014-03-12,,2021-05-05T09:11:12.7114915-03:00,2024-11-20T12:08:11.7856061+00:00 130,09313766,09.313.766/0001-09,CARUANA S.A. - SOCIEDADE DE CRÉDITO FINANCIAMENTO E INVESTIMENTO,CARUANA SCFI,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha e Destinatário,,,2013-08-12,2020-11-03 06:30:00,2021-05-05T09:11:12.7114682-03:00,2024-05-15T16:49:45.7402304+00:00 131,61747085,61.747.085/0001-60,TULLETT PREBON BRASIL CORRETORA DE VALORES E CÂMBIO LTDA,TULLETT PREBON BRASIL CVC LTDA,RSFN,,,,,Não,Não,,,,,,2013-07-15,,2021-05-05T09:11:12.7115313-03:00,2021-05-05T09:11:12.7115315-03:00 132,17453575,17.453.575/0001-62,ICBC do Brasil Banco Múltiplo S.A.,ICBC DO BRASIL BM S.A.,RSFN,Banco Múltiplo,,Sim,Sim,Não,Não,Sim,Não,,,https://www.icbc.com.cn,2013-09-26,,2021-05-05T09:11:12.7114895-03:00,2024-05-15T16:49:45.7461071+00:00 133,10398952,10.398.952/0001-69,CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS DE CRÉDITO E ECONOMIA FAMILIAR E SOLIDÁRIA - CRESOL CONFEDERAÇÃO,CRESOL CONFEDERAÇÃO,RSFN,,DRCT,Sim,Sim,Não,Sim,Sim,Sim,Banco folha e Destinatário,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,,2016-05-02,2020-11-03 06:30:00,2021-05-05T09:11:12.7114705-03:00,2024-05-15T16:49:45.7411774+00:00 134,33862244,33.862.244/0001-32,BGC LIQUIDEZ DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA,BGC LIQUIDEZ DTVM LTDA,RSFN,,,,,Não,Não,,,,,,2014-07-28,,2021-05-05T09:11:12.7115095-03:00,2021-05-05T09:11:12.7115097-03:00 -136,00315557,00.315.557/0001-11,CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS UNICRED LTDA. - UNICRED DO BRASIL.,CONF NAC COOP CENTRAIS UNICRED,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha e Destinatário,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,,2014-07-28,2020-11-03 06:30:00,2021-05-05T09:11:12.7112437-03:00,2024-05-15T16:49:45.7414100+00:00 +136,00315557,00.315.557/0001-11,COOPERATIVA CENTRAL DE CRÉDITO UNICRED DO BRASIL - UNICRED DO BRASIL,UNICRED DO BRASIL,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha e Destinatário,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,,2014-07-28,2020-11-03 06:30:00,2021-05-05T09:11:12.7112437-03:00,2024-11-20T12:08:11.7778138+00:00 138,10853017,10.853.017/0001-45,Get Money Corretora de Câmbio S.A.,GET MONEY CC LTDA,Internet,,,,,Não,Não,,,,,,2014-07-14,,2021-05-05T09:11:12.7114719-03:00,2021-05-05T09:11:12.7114721-03:00 139,55230916,55.230.916/0001-20,Intesa Sanpaolo Brasil S.A. - Banco Múltiplo,INTESA SANPAOLO BRASIL S.A. BM,RSFN,Banco Múltiplo,,,,Não,Não,,,,,https://www.intesasanpaolobrasil.com.br,2015-05-08,,2021-05-05T09:11:12.7115209-03:00,2021-05-05T09:11:12.7115212-03:00 140,62169875,62.169.875/0001-79,NU INVEST CORRETORA DE VALORES S.A.,NU INVEST CORRETORA DE VALORES S.A.,RSFN,,,,,Não,Não,,,,,,2015-05-26,,2021-05-05T09:11:12.7115335-03:00,2021-09-28T05:25:17.0256160-03:00 @@ -129,9 +129,9 @@ 268,14511781,14.511.781/0001-93,BARI COMPANHIA HIPOTECÁRIA,BARI CIA HIPOTECÁRIA,Internet,,,,,Não,Não,,,,Consignado; Imobiliário; Pessoal; Veículos,,2017-12-21,,2021-05-05T09:11:12.7114848-03:00,2023-10-21T12:05:56.1885754+00:00 269,53518684,53.518.684/0001-84,BANCO HSBC S.A.,BCO HSBC S.A.,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,,,,2018-02-07,2022-01-17 10:00:00,2021-05-05T09:11:12.7115202-03:00,2024-05-15T16:49:45.7299517+00:00 270,61444949,61.444.949/0001-75,SAGITUR CORRETORA DE CÂMBIO S.A.,SAGITUR CC - EM LIQUIDAÇÃO EXTRAJUDICIAL,Internet,,,,,Não,Não,,,,,,2018-08-01,,2021-05-05T09:11:12.7115302-03:00,2023-11-29T12:06:22.4602221+00:00 -271,27842177,27.842.177/0001-91,IB Corretora de Câmbio Títulos e Valores Mobiliários S.A.,IB CCTVM S.A.,RSFN,,,,,Não,Não,,,,,,2018-02-26,,2021-05-05T09:11:12.7114984-03:00,2021-05-05T09:11:12.7114985-03:00 +271,27842177,27.842.177/0001-91,IB Corretora de Câmbio Títulos e Valores Mobiliários S.A.,IB CCTVM S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2018-02-26,2024-11-18 10:00:00,2021-05-05T09:11:12.7114984-03:00,2024-11-20T12:08:12.9923927+00:00 272,00250699,00.250.699/0001-48,AGK CORRETORA DE CAMBIO S.A.,AGK CC S.A.,RSFN,,,,,Não,Não,,,,,,2018-11-21,,2021-05-05T09:11:12.7112212-03:00,2021-05-05T09:11:12.7112295-03:00 -273,08253539,08.253.539/0001-64,Cooperativa de Crédito Rural de São Miguel do Oeste - Sulcredi/São Miguel,CCR DE SÃO MIGUEL DO OESTE,RSFN,,DRCT,,,Não,Não,,,,,,2018-04-24,2020-11-03 06:30:00,2021-05-05T09:11:12.7114649-03:00,2021-05-05T09:11:12.7114651-03:00 +273,08253539,08.253.539/0001-64,COOPERATIVA DE CREDITO SULCREDI AMPLEA,COOP SULCREDI AMPLEA,RSFN,,DRCT,,,Não,Não,,,,,,2018-04-24,2020-11-03 06:30:00,2021-05-05T09:11:12.7114649-03:00,2024-11-20T12:08:11.7822814+00:00 274,11581339,11.581.339/0001-45,BMP SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E A EMPRESA DE PEQUENO PORTE LTDA.,BMP SCMEPP LTDA,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,Capital de Giro; Outros Créditos; Pessoal; Troca de Modalidade,,2019-09-10,2020-11-03 06:30:00,2021-05-05T09:11:12.7114738-03:00,2024-05-15T16:49:45.7392307+00:00 276,11970623,11.970.623/0001-03,BANCO SENFF S.A.,BCO SENFF S.A.,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,Banco Folha,Consignado,,2018-06-12,2021-04-16 09:00:00,2021-05-05T09:11:12.7114792-03:00,2024-10-18T12:07:53.6609780+00:00 278,27652684,27.652.684/0001-62,Genial Investimentos Corretora de Valores Mobiliários S.A.,GENIAL INVESTIMENTOS CVM S.A.,RSFN,,,,,Não,Não,,,,,,2018-05-14,,2021-05-05T09:11:12.7114980-03:00,2021-05-05T09:11:12.7114981-03:00 @@ -162,7 +162,7 @@ 315,03502968,03.502.968/0001-04,PI Distribuidora de Títulos e Valores Mobiliários S.A.,PI DTVM S.A.,RSFN,,,,,Não,Não,,,,,,2019-01-24,,2021-05-05T09:11:12.7114512-03:00,2021-05-05T09:11:12.7114514-03:00 318,61186680,61.186.680/0001-74,Banco BMG S.A.,BCO BMG S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha e Destinatário,Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,https://www.bancobmg.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115294-03:00,2024-05-15T16:49:45.7229067+00:00 319,11495073,11.495.073/0001-18,OM DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA,OM DTVM LTDA,Internet,,,,,Não,Não,,,,,,2019-03-01,,2021-05-05T09:11:12.7114734-03:00,2021-05-05T09:11:12.7114735-03:00 -320,07450604,07.450.604/0001-89,BANK OF CHINA (BRASIL) BANCO MÚLTIPLO S/A,BOC BRASIL,RSFN,Banco Múltiplo,,Sim,Sim,Não,Não,Sim,Sim,,,https://www.br.ccb.com,2002-04-22,,2021-05-05T09:11:12.7114616-03:00,2024-10-10T12:08:00.7521769+00:00 +320,07450604,07.450.604/0001-89,BANK OF CHINA (BRASIL) BANCO MÚLTIPLO S/A,BOC BRASIL,RSFN,Banco Múltiplo,,Sim,Sim,Não,Não,Sim,Sim,,Consignado; Imobiliário; Pessoal; Veículos,https://www.br.ccb.com,2002-04-22,,2021-05-05T09:11:12.7114616-03:00,2024-11-20T12:08:13.2876978+00:00 321,18188384,18.188.384/0001-83,CREFAZ SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E A EMPRESA DE PEQUENO PORTE S.A.,CREFAZ SCMEPP SA,RSFN,,,,,Não,Não,,,,,,2019-06-11,,2021-05-05T09:11:12.7114908-03:00,2024-05-15T12:07:37.2833030+00:00 322,01073966,01.073.966/0001-11,Cooperativa de Crédito Rural de Abelardo Luz - Sulcredi/Crediluz,CCR DE ABELARDO LUZ,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco Folha,,,2019-06-14,2022-03-14 10:00:00,2021-05-05T09:11:12.7114423-03:00,2024-05-15T16:49:45.7425568+00:00 323,10573521,10.573.521/0001-91,MERCADO PAGO INSTITUIÇÃO DE PAGAMENTO LTDA.,MERCADO PAGO IP LTDA.,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,Destinatário,,,2019-06-24,2020-11-03 06:30:00,2021-05-05T09:11:12.7114708-03:00,2024-05-15T16:49:45.7475881+00:00 @@ -176,7 +176,7 @@ 332,13140088,13.140.088/0001-99,ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO,ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO,RSFN,,DRCT,Sim,Sim,Não,Não,,,Banco folha e Destinatário,,,2019-08-16,2020-11-03 06:30:00,2021-05-05T09:11:12.7114807-03:00,2022-12-13T12:06:52.2983548+00:00 334,15124464,15.124.464/0001-87,BANCO BESA S.A.,BANCO BESA S.A.,RSFN,,,,,Não,Não,,,,,,2023-02-22,,2023-03-03T14:56:55.3112604+00:00,2023-03-03T14:56:55.3112605+00:00 335,27098060,27.098.060/0001-45,Banco Digio S.A.,BANCO DIGIO,RSFN,Banco Múltiplo,DRCT,,,Não,Não,,,Destinatário,Consignado; Outros Créditos,https://www.digio.com.br,2019-11-25,2020-11-03 06:30:00,2021-05-05T09:11:12.7114964-03:00,2023-10-21T12:05:56.1792295+00:00 -336,31872495,31.872.495/0001-72,Banco C6 S.A.,BCO C6 S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Destinatário,Capital de Giro; Cheque Especial; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.c6bank.com,2019-01-31,2020-11-03 06:30:00,2021-05-05T09:11:12.7115026-03:00,2024-08-09T12:07:01.1518628+00:00 +336,31872495,31.872.495/0001-72,Banco C6 S.A.,BCO C6 S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco Folha e Destinatário,Capital de Giro; Cheque Especial; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.c6bank.com,2019-01-31,2020-11-03 06:30:00,2021-05-05T09:11:12.7115026-03:00,2024-11-20T12:08:13.9098123+00:00 340,09554480,09.554.480/0001-07,SUPERDIGITAL INSTITUIÇÃO DE PAGAMENTO S.A.,SUPERDIGITAL I.P. S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2019-09-25,2020-11-03 06:30:00,2021-05-05T09:11:12.7114697-03:00,2022-07-07T12:06:14.8084022+00:00 341,60701190,60.701.190/0001-04,ITAÚ UNIBANCO S.A.,ITAÚ UNIBANCO S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Sim,Não,Sim,Sim,Banco folha e Destinatário,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.itau.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115257-03:00,2024-05-15T16:49:45.7308751+00:00 342,32997490,32.997.490/0001-39,Creditas Sociedade de Crédito Direto S.A.,CREDITAS SCD,RSFN,,DRCT,,,Não,Não,,,,,,2019-07-26,2020-11-03 06:30:00,2021-05-05T09:11:12.7115047-03:00,2021-05-05T09:11:12.7115049-03:00 @@ -204,7 +204,7 @@ 376,33172537,33.172.537/0001-98,BANCO J.P. MORGAN S.A.,BCO J.P. MORGAN S.A.,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,,Pessoal,https://www.jpmorgan.com,2002-04-22,2022-10-01 10:00:00,2021-05-05T09:11:12.7115066-03:00,2024-05-15T16:49:45.7311056+00:00 377,17826860,17.826.860/0001-81,BMS SOCIEDADE DE CRÉDITO DIRETO S.A.,BMS SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2020-10-01,2024-01-11 11:00:00,2021-05-05T09:11:12.7114904-03:00,2024-01-09T12:06:14.2973546+00:00 378,01852137,01.852.137/0001-37,BANCO BRASILEIRO DE CRÉDITO SOCIEDADE ANÔNIMA,BCO BRASILEIRO DE CRÉDITO S.A.,RSFN,,DRCT,,,Não,Não,,,,Capita de Giro PJ; Crédito Pessoal; Financiamento de Veículos; Outros; Troca de Modalidade,,2020-09-11,2024-03-18 06:00:00,2021-05-05T09:11:12.7114454-03:00,2024-08-31T12:29:47.9802220+00:00 -379,01658426,01.658.426/0001-08,COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA.,CECM COOPERFORTE,RSFN,,,,,Não,Não,,,,Cheque Especial; Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,,2020-09-01,,2021-05-05T09:11:12.7114443-03:00,2023-10-21T12:05:56.8456698+00:00 +379,01658426,01.658.426/0001-08,COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA.,CECM COOPERFORTE,RSFN,,DRCT,,,Não,Não,,,,Cheque Especial; Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,,2020-09-01,2024-11-25 09:00:00,2021-05-05T09:11:12.7114443-03:00,2024-11-20T12:08:12.5504802+00:00 380,22896431,22.896.431/0001-10,PICPAY INSTITUIçãO DE PAGAMENTO S.A.,PICPAY,RSFN,Banco Múltiplo,DRCT,Sim,Não,Não,Não,Sim,Sim,Destinatário,,https://www.picpay.com.br,2020-10-15,2020-11-03 06:30:00,2021-05-05T09:11:12.7114941-03:00,2024-05-15T16:49:45.7492256+00:00 381,60814191,60.814.191/0001-57,BANCO MERCEDES-BENZ DO BRASIL S.A.,BCO MERCEDES-BENZ S.A.,RSFN,Banco Múltiplo,,,,Não,Não,,,,Pessoal; Veículos,https://www.bancomercedes-benz.com.br,2020-05-25,,2021-05-05T09:11:12.7115265-03:00,2023-10-21T12:05:56.1824214+00:00 382,04307598,04.307.598/0001-17,FIDÚCIA SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E À EMPRESA DE PEQUENO PORTE LIMITADA.,FIDUCIA SCMEPP LTDA,RSFN,,DRCT,,,Não,Não,,,,,,2020-07-31,2021-12-15 10:00:00,2021-05-05T09:11:12.7114541-03:00,2023-09-25T12:28:23.0763971+00:00 @@ -259,7 +259,7 @@ 444,40654622,40.654.622/0001-58,TRINUS SOCIEDADE DE CRÉDITO DIRETO S.A.,TRINUS SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2021-09-09,2022-11-07 17:00:00,2021-09-13T19:08:16.9817382-03:00,2022-10-19T12:08:46.7241587+00:00 445,35551187,35.551.187/0001-04,PLANTAE S.A. - CRÉDITO FINANCIAMENTO E INVESTIMENTO,PLANTAE CFI,RSFN,,,,,Não,Não,,,,,,2021-06-23,,2021-06-22T10:03:37.2758379-03:00,2021-06-22T10:03:37.2758811-03:00 447,12392983,12.392.983/0001-38,MIRAE ASSET (BRASIL) CORRETORA DE CÂMBIO TÍTULOS E VALORES MOBILIÁRIOS LTDA.,MIRAE ASSET (BRASIL) CCTVM LTDA.,RSFN,,,,,Não,Não,,,,,,2021-09-27,,2021-09-28T05:25:19.3475750-03:00,2023-10-06T12:06:37.6641955+00:00 -448,39669186,39.669.186/0001-01,HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.,HEMERA DTVM LTDA.,RSFN,,,,,Não,Não,,,,,,2021-08-17,,2021-08-24T13:06:55.8926622-03:00,2021-08-24T13:06:55.8926625-03:00 +448,39669186,39.669.186/0001-01,HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.,HEMERA DTVM LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2021-08-17,2024-11-11 09:00:00,2021-08-24T13:06:55.8926622-03:00,2024-11-20T12:08:13.0684787+00:00 449,37555231,37.555.231/0001-71,DM SOCIEDADE DE CRÉDITO DIRETO S.A.,DM,RSFN,,,Sim,Não,Não,Não,Sim,Sim,,,,2021-10-22,,2021-10-23T20:55:03.4293187-03:00,2024-05-15T16:49:45.7444605+00:00 450,13203354,13.203.354/0001-85,FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A.,FITBANK IP,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,,,2021-06-30,2022-03-08 10:30:00,2021-07-06T07:20:49.2254617-03:00,2024-05-15T16:49:45.7454123+00:00 451,40475846,40.475.846/0001-00,J17 - SOCIEDADE DE CRÉDITO DIRETO S/A,J17 - SCD S/A,RSFN,,DRCT,,,Não,Não,,,,,,2022-01-18,2023-11-24 10:00:00,2022-02-01T08:17:39.0832206+00:00,2023-11-23T12:06:11.9151500+00:00 @@ -316,7 +316,7 @@ 527,44478623,44.478.623/0001-40,ATICCA - SOCIEDADE DE CRÉDITO DIRETO S.A.,ATICCA SCD S.A.,RSFN,,,,,Não,Não,,,,,,2023-02-06,,2023-03-03T14:56:55.3112612+00:00,2023-03-03T14:56:55.3112613+00:00 528,34829992,34.829.992/0001-86,REAG TRUST DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.,REAG TRUST DTVM,RSFN,,DRCT,,,Não,Não,Sim,Sim,,,,2023-03-06,2024-04-01 10:00:00,2023-03-03T14:56:55.3112606+00:00,2024-09-25T12:08:06.7384843+00:00 529,17079937,17.079.937/0001-05,PINBANK BRASIL INSTITUIÇÃO DE PAGAMENTO S.A.,PINBANK IP,RSFN,,DRCT,,,Não,Não,Sim,Sim,,,,2022-11-16,2023-06-07 09:15:00,2022-11-12T12:06:34.2025683+00:00,2024-05-15T16:49:45.7494567+00:00 -530,47873449,47.873.449/0001-28,SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A.,SER FINANCE SCD S.A.,RSFN,,,Sim,Não,Não,Não,Sim,Sim,,Capita de Giro PJ; Crédito Consignado; Crédito Pessoal; Troca de Modalidade,,2023-03-14,,2023-03-09T12:07:29.7846292+00:00,2024-05-15T16:49:45.7504877+00:00 +530,47873449,47.873.449/0001-28,SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A.,SER FINANCE SCD S.A.,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,Capita de Giro PJ; Crédito Consignado; Crédito Pessoal; Troca de Modalidade,,2023-03-14,2024-11-13 09:00:00,2023-03-09T12:07:29.7846292+00:00,2024-11-20T12:08:13.1020585+00:00 531,34337707,34.337.707/0001-00,BMP SOCIEDADE DE CRÉDITO DIRETO S.A,BMP SCD S.A.,RSFN,,,,,Não,Não,Sim,Sim,,Capital de Giro; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade,,2023-05-22,,2023-09-25T12:28:25.1347544+00:00,2024-05-21T12:06:40.2011379+00:00 532,45745537,45.745.537/0001-19,EAGLE SOCIEDADE DE CRÉDITO DIRETO S.A.,EAGLE SCD S.A.,RSFN,,,,,Não,Não,,,,,,2023-04-03,,2023-03-29T12:07:07.8301112+00:00,2023-03-29T12:07:07.8301112+00:00 533,22575466,22.575.466/0001-58,SRM BANK INSTITUIÇÃO DE PAGAMENTO S/A,SRM BANK,RSFN,,,,,Não,Não,,,,,,2023-07-17,,2023-09-25T12:28:25.1347537+00:00,2024-03-22T12:06:54.1991257+00:00 @@ -353,7 +353,7 @@ 565,74014747,74.014.747/0001-35,ÁGORA CORRETORA DE TITULOS E VALORES MOBILIARIOS S.A.,ÁGORA CTVM S.A.,RSFN,,,,,Não,Não,,,,,,2023-11-20,,2023-11-14T12:06:11.7936380+00:00,2023-11-14T12:06:11.7936735+00:00 566,23114447,23.114.447/0001-97,FLAGSHIP INSTITUICAO DE PAGAMENTOS LTDA,FLAGSHIP IP LTDA,RSFN,,IDRT,,,Não,Não,,,,,,2023-10-30,2020-11-03 06:30:00,2023-10-24T12:06:14.1207735+00:00,2023-10-24T12:06:12.8841523+00:00 567,33040601,33.040.601/0001-87,MERCANTIL FINANCEIRA S.A. - CRÉDITO FINANCIAMENTO E INVESTIMENTO,MERCANTIL FINANCEIRA,Internet,,,,,Não,Não,,,,Consignado; Outros Créditos; Veículos,,2023-08-28,,2023-09-25T12:28:25.1347543+00:00,2024-06-17T12:07:15.0691344+00:00 -568,49933388,49.933.388/0001-72,BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A.,BRCONDOS SCD S.A.,RSFN,,,,,Não,Não,,,,,,2023-12-08,,2023-12-04T12:06:24.3671440+00:00,2023-12-04T12:06:24.3671662+00:00 +568,49933388,49.933.388/0001-72,BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A.,BRCONDOS SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2023-12-08,2024-11-13 11:00:00,2023-12-04T12:06:24.3671440+00:00,2024-11-20T12:08:13.1045667+00:00 569,12473687,12.473.687/0001-61,CONTA PRONTA INSTITUICAO DE PAGAMENTO LTDA,CONTA PRONTA IP,RSFN,,,,,Não,Não,,,,,,2023-10-31,,2023-10-25T12:06:22.8368523+00:00,2023-10-25T12:06:22.8368905+00:00 572,51414521,51.414.521/0001-26,ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.,ALL IN CRED SCD S.A.,RSFN,,,,,Não,Não,,,,,,2023-12-22,,2023-12-18T12:06:50.1170089+00:00,2023-12-18T12:06:50.1170312+00:00 575,48584954,48.584.954/0001-15,DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.,DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.,RSFN,,,,,Não,Não,,,,,,2024-06-13,,2024-06-07T12:08:28.2767917+00:00,2024-06-07T12:08:28.2768294+00:00 @@ -374,7 +374,7 @@ 590,40473435,40.473.435/0001-78,REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS INSTITUICAO DE PAGAMENTO S.A.,REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-03-04,2022-12-13 09:09:43,2024-02-28T12:06:05.3104086+00:00,2024-02-28T12:06:04.5801118+00:00 591,02671743,02.671.743/0001-19,BANVOX DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA,BANVOX DTVM,RSFN,,,,,Não,Não,,,,,,2024-06-28,,2024-06-24T12:07:25.1385983+00:00,2024-06-24T12:07:25.1386177+00:00 592,45548763,45.548.763/0001-00,INSTITUIÇÃO DE PAGAMENTOS MAPS LTDA.,MAPS IP LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2024-06-03,2024-10-07 11:00:00,2024-05-28T12:06:53.5582230+00:00,2024-10-02T12:08:04.4963575+00:00 -593,27084098,27.084.098/0001-69,TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A,TRANSFEERA IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-05-15,2021-05-04 10:27:26,2024-05-09T12:06:38.0035796+00:00,2024-05-09T12:06:37.6901159+00:00 +593,27084098,27.084.098/0001-69,TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A,TRANSFEERA IP S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2024-05-15,2024-11-04 09:10:00,2024-05-09T12:06:38.0035796+00:00,2024-11-20T12:08:12.9891048+00:00 594,48703388,48.703.388/0001-13,ASA SOCIEDADE DE CRÉDITO DIRETO S.A.,ASA SOCIEDADE DE CRÉDITO DIRETO S.A.,RSFN,,DRCT,,,Não,Não,Sim,Sim,,,,2024-03-11,2024-07-05 09:00:00,2024-03-05T12:06:35.1241273+00:00,2024-09-19T12:07:45.0932620+00:00 595,19468242,19.468.242/0001-32,ZOOP TECNOLOGIA & INSTITUICAO DE PAGAMENTO S.A.,ZOOP MEIOS DE PAGAMENTO,RSFN,,IDRT,,,Não,Não,,,,,,2024-03-21,2020-11-03 06:30:00,2024-03-15T12:06:05.5274606+00:00,2024-03-15T12:06:05.1580392+00:00 597,34747388,34.747.388/0001-00,ISSUER INSTITUICAO DE PAGAMENTO LTDA.,ISSUER IP LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2024-03-08,2024-09-05 10:10:00,2024-03-04T12:10:35.0004133+00:00,2024-09-06T12:31:46.1754236+00:00 @@ -385,11 +385,11 @@ 611,61820817,61.820.817/0001-09,Banco Paulista S.A.,BCO PAULISTA S.A.,RSFN,Banco Múltiplo,,Sim,Sim,Não,Não,Sim,Não,,Consignado; Imobiliário; Troca de Modalidade,https://www.bancopaulista.com.br,2002-04-22,,2021-05-05T09:11:12.7115321-03:00,2024-05-15T16:49:45.7335337+00:00 612,31880826,31.880.826/0001-16,Banco Guanabara S.A.,BCO GUANABARA S.A.,RSFN,Banco Múltiplo,DRCT,Não,Sim,Não,Não,,,,,https://www.bancoguanabara.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115029-03:00,2022-06-23T13:48:15.3478476+00:00 613,60850229,60.850.229/0001-47,Omni Banco S.A.,OMNI BANCO S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Não,,Outros Créditos; Pessoal; Veículos,,2002-04-22,2021-05-27 08:00:00,2021-05-05T09:11:12.7115268-03:00,2024-05-15T16:49:45.7485284+00:00 -614,52440987,52.440.987/0001-69,NITRO SOCIEDADE DE CRÉDITO DIRETO S.A.,NITRO SCD S.A.,RSFN,,,,,Não,Não,,,,,,2024-06-14,,2024-06-10T12:07:20.4287940+00:00,2024-06-10T12:07:20.4288223+00:00 +614,52440987,52.440.987/0001-69,NITRO SOCIEDADE DE CRÉDITO DIRETO S.A.,NITRO SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2024-06-14,2024-11-05 09:00:00,2024-06-10T12:07:20.4287940+00:00,2024-11-20T12:08:13.1074196+00:00 615,37470405,37.470.405/0001-01,SMART SOLUTIONS GROUP INSTITUICAO DE PAGAMENTO LTDA,SMART SOLUTIONS GROUP IP LTDA,RSFN,,,,,Não,Não,,,,,,2024-10-04,,2024-09-30T12:08:41.4084970+00:00,2024-09-30T12:08:41.4085273+00:00 619,49931906,49.931.906/0001-19,TRIO INSTITUICAO DE PAGAMENTO LTDA.,TRIO IP LTDA.,RSFN,,,,,Não,Não,,,,,,2024-08-01,,2024-07-26T12:29:30.1748074+00:00,2024-07-26T12:29:30.1748268+00:00 620,51342763,51.342.763/0001-51,REVOLUT SOCIEDADE DE CRÉDITO DIRETO S.A.,REVOLUT SCD S.A.,Internet,,,,,Não,Não,,,,,,2024-05-15,,2024-05-09T12:06:38.0036073+00:00,2024-05-09T12:06:38.0036074+00:00 -623,59285411,59.285.411/0001-13,Banco Pan S.A.,BANCO PAN,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Destinatário,Cheque Especial; Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,https://www.bancopan.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115240-03:00,2024-05-15T16:49:45.7333032+00:00 +623,59285411,59.285.411/0001-13,Banco Pan S.A.,BANCO PAN,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco Folha e Destinatário,Cheque Especial; Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,https://www.bancopan.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115240-03:00,2024-11-20T12:08:13.9104425+00:00 626,61348538,61.348.538/0001-86,BANCO C6 CONSIGNADO S.A.,BCO C6 CONSIG,RSFN,,,,,Não,Não,,,,Consignado; Veículos,,2002-04-22,,2021-05-05T09:11:12.7115298-03:00,2023-10-21T12:05:56.1759027+00:00 630,58497702,58.497.702/0001-02,BANCO LETSBANK S.A.,BCO LETSBANK S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,,,,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115221-03:00,2024-05-15T16:49:45.7316055+00:00 632,52586293,52.586.293/0001-34,Z-ON SOCIEDADE DE CRÉDITO DIRETO S.A.,Z-ON SCD S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-10-03,2024-10-03 07:07:47,2024-09-27T12:08:07.9907432+00:00,2024-10-04T12:08:01.0865649+00:00 @@ -408,7 +408,10 @@ 659,35210410,35.210.410/0001-41,ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA,ONEKEY PAYMENTS IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-09-30,2022-09-12 11:04:30,2024-09-24T12:07:36.7070372+00:00,2024-09-24T12:07:35.7979065+00:00 660,34471744,34.471.744/0001-06,PAGME INSTITUIÇÃO DE PAGAMENTO LTDA.,PAGME IP LTDA,RSFN,,IDRT,,,Não,Não,,,,,,2024-10-22,2023-09-19 15:07:18,2024-10-16T12:07:56.4868924+00:00,2024-10-16T12:07:55.6307764+00:00 661,55428859,55.428.859/0001-98,FREEX CORRETORA DE CAMBIO S.A.,FREEX CC S.A.,Internet,,,,,Não,Não,,,,,,2024-09-11,,2024-09-05T12:33:05.3563736+00:00,2024-09-05T12:33:05.3564037+00:00 +662,32708748,32.708.748/0001-30,WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.,WE PAY OUT IP LTDA.,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-25,2024-07-03 15:28:02,2024-11-20T12:08:13.9188247+00:00,2024-11-20T12:08:13.0175833+00:00 664,11414839,11.414.839/0001-92,EAGLE INSTITUICAO DE PAGAMENTO LTDA.,EAGLE IP LTDA.,RSFN,,,,,Não,Não,,,,,,2024-09-30,,2024-09-24T12:07:36.7070087+00:00,2024-09-24T12:07:36.7070368+00:00 +665,20018183,20.018.183/0001-80,STARK BANK S.A. - INSTITUICAO DE PAGAMENTO,STARK BANK S.A. - IP,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-25,2021-12-21 02:14:54,2024-11-20T12:08:13.9187948+00:00,2024-11-20T12:08:12.9272681+00:00 +671,26264220,26.264.220/0001-16,ZERO INSTITUIÇÃO DE PAGAMENTO S.A.,ZERO,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-11,2023-11-17 12:11:31,2024-11-20T12:08:13.9188245+00:00,2024-11-20T12:08:12.9794672+00:00 707,62232889,62.232.889/0001-90,Banco Daycoval S.A.,BCO DAYCOVAL S.A,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.daycoval.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115338-03:00,2024-05-15T16:49:45.7268243+00:00 712,78632767,78.632.767/0001-20,OURIBANK S.A. BANCO MÚLTIPLO,OURIBANK S.A.,RSFN,Banco Múltiplo,DRCT,,,Não,Não,,,,,https://www.ourinvest.com.br,2014-01-28,2020-11-03 06:30:00,2021-05-05T09:11:12.7115456-03:00,2024-06-25T12:06:53.3082056+00:00 719,33884941,33.884.941/0001-94,BANCO MASTER MÚLTIPLO S.A.,BANCO MASTER MÚLTIPLO,RSFN,,,,,Não,Não,,,,,,2024-09-02,,2024-08-29T12:32:25.2409945+00:00,2024-08-29T12:32:25.2410239+00:00 diff --git a/data/bancos.json b/data/bancos.json index e1b82fea..a12d49a1 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -213,8 +213,8 @@ "COMPE": "015", "ISPB": "02819125", "Document": "02.819.125/0001-73", - "LongName": "UBS Brasil Corretora de Câmbio, Títulos e Valores Mobiliários S.A.", - "ShortName": "UBS BRASIL CCTVM S.A.", + "LongName": "UBS BB CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS S.A.", + "ShortName": "UBS BB CCTVM S.A.", "Network": "RSFN", "Type": null, "PixType": null, @@ -230,7 +230,7 @@ "DateOperationStarted": "2011-03-15", "DatePixStarted": null, "DateRegistered": "2021-05-05T09:11:12.7114483-03:00", - "DateUpdated": "2021-05-05T09:11:12.7114485-03:00" + "DateUpdated": "2024-11-20T12:08:11.780165+00:00" }, { "COMPE": "016", @@ -1870,8 +1870,8 @@ "COMPE": "129", "ISPB": "18520834", "Document": "18.520.834/0001-93", - "LongName": "UBS Brasil Banco de Investimento S.A.", - "ShortName": "UBS BRASIL BI S.A.", + "LongName": "UBS BB BANCO DE INVESTIMENTO S.A.", + "ShortName": "UBS BB BI S.A.", "Network": "RSFN", "Type": null, "PixType": null, @@ -1887,7 +1887,7 @@ "DateOperationStarted": "2014-03-12", "DatePixStarted": null, "DateRegistered": "2021-05-05T09:11:12.7114915-03:00", - "DateUpdated": "2021-05-05T09:11:12.7114917-03:00" + "DateUpdated": "2024-11-20T12:08:11.7856061+00:00" }, { "COMPE": "130", @@ -2017,8 +2017,8 @@ "COMPE": "136", "ISPB": "00315557", "Document": "00.315.557/0001-11", - "LongName": "CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS UNICRED LTDA. - UNICRED DO BRASIL.", - "ShortName": "CONF NAC COOP CENTRAIS UNICRED", + "LongName": "COOPERATIVA CENTRAL DE CRÉDITO UNICRED DO BRASIL - UNICRED DO BRASIL", + "ShortName": "UNICRED DO BRASIL", "Network": "RSFN", "Type": null, "PixType": "DRCT", @@ -2043,7 +2043,7 @@ "DateOperationStarted": "2014-07-28", "DatePixStarted": "2020-11-03 06:30:00", "DateRegistered": "2021-05-05T09:11:12.7112437-03:00", - "DateUpdated": "2024-05-15T16:49:45.74141+00:00" + "DateUpdated": "2024-11-20T12:08:11.7778138+00:00" }, { "COMPE": "138", @@ -3273,7 +3273,7 @@ "ShortName": "IB CCTVM S.A.", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -3284,9 +3284,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2018-02-26", - "DatePixStarted": null, + "DatePixStarted": "2024-11-18 10:00:00", "DateRegistered": "2021-05-05T09:11:12.7114984-03:00", - "DateUpdated": "2021-05-05T09:11:12.7114985-03:00" + "DateUpdated": "2024-11-20T12:08:12.9923927+00:00" }, { "COMPE": "272", @@ -3315,8 +3315,8 @@ "COMPE": "273", "ISPB": "08253539", "Document": "08.253.539/0001-64", - "LongName": "Cooperativa de Crédito Rural de São Miguel do Oeste - Sulcredi/São Miguel", - "ShortName": "CCR DE SÃO MIGUEL DO OESTE", + "LongName": "COOPERATIVA DE CREDITO SULCREDI AMPLEA", + "ShortName": "COOP SULCREDI AMPLEA", "Network": "RSFN", "Type": null, "PixType": "DRCT", @@ -3332,7 +3332,7 @@ "DateOperationStarted": "2018-04-24", "DatePixStarted": "2020-11-03 06:30:00", "DateRegistered": "2021-05-05T09:11:12.7114649-03:00", - "DateUpdated": "2021-05-05T09:11:12.7114651-03:00" + "DateUpdated": "2024-11-20T12:08:11.7822814+00:00" }, { "COMPE": "274", @@ -4059,12 +4059,17 @@ "PCR": true, "PCRP": true, "SalaryPortability": null, - "Products": null, + "Products": [ + "Consignado", + "Imobiliário", + "Pessoal", + "Veículos" + ], "Url": "https://www.br.ccb.com", "DateOperationStarted": "2002-04-22", "DatePixStarted": null, "DateRegistered": "2021-05-05T09:11:12.7114616-03:00", - "DateUpdated": "2024-10-10T12:08:00.7521769+00:00" + "DateUpdated": "2024-11-20T12:08:13.2876978+00:00" }, { "COMPE": "321", @@ -4403,7 +4408,7 @@ "DetectaFlow": false, "PCR": true, "PCRP": true, - "SalaryPortability": "Destinatário", + "SalaryPortability": "Banco Folha e Destinatário", "Products": [ "Capital de Giro", "Cheque Especial", @@ -4417,7 +4422,7 @@ "DateOperationStarted": "2019-01-31", "DatePixStarted": "2020-11-03 06:30:00", "DateRegistered": "2021-05-05T09:11:12.7115026-03:00", - "DateUpdated": "2024-08-09T12:07:01.1518628+00:00" + "DateUpdated": "2024-11-20T12:08:13.9098123+00:00" }, { "COMPE": "340", @@ -5099,7 +5104,7 @@ "ShortName": "CECM COOPERFORTE", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -5117,9 +5122,9 @@ ], "Url": null, "DateOperationStarted": "2020-09-01", - "DatePixStarted": null, + "DatePixStarted": "2024-11-25 09:00:00", "DateRegistered": "2021-05-05T09:11:12.7114443-03:00", - "DateUpdated": "2023-10-21T12:05:56.8456698+00:00" + "DateUpdated": "2024-11-20T12:08:12.5504802+00:00" }, { "COMPE": "380", @@ -6438,7 +6443,7 @@ "ShortName": "HEMERA DTVM LTDA.", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -6449,9 +6454,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2021-08-17", - "DatePixStarted": null, + "DatePixStarted": "2024-11-11 09:00:00", "DateRegistered": "2021-08-24T13:06:55.8926622-03:00", - "DateUpdated": "2021-08-24T13:06:55.8926625-03:00" + "DateUpdated": "2024-11-20T12:08:13.0684787+00:00" }, { "COMPE": "449", @@ -7776,7 +7781,7 @@ "ShortName": "SER FINANCE SCD S.A.", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": true, "CreditDocument": false, "LegalCheque": false, @@ -7792,9 +7797,9 @@ ], "Url": null, "DateOperationStarted": "2023-03-14", - "DatePixStarted": null, + "DatePixStarted": "2024-11-13 09:00:00", "DateRegistered": "2023-03-09T12:07:29.7846292+00:00", - "DateUpdated": "2024-05-15T16:49:45.7504877+00:00" + "DateUpdated": "2024-11-20T12:08:13.1020585+00:00" }, { "COMPE": "531", @@ -8644,7 +8649,7 @@ "ShortName": "BRCONDOS SCD S.A.", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -8655,9 +8660,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2023-12-08", - "DatePixStarted": null, + "DatePixStarted": "2024-11-13 11:00:00", "DateRegistered": "2023-12-04T12:06:24.367144+00:00", - "DateUpdated": "2023-12-04T12:06:24.3671662+00:00" + "DateUpdated": "2024-11-20T12:08:13.1045667+00:00" }, { "COMPE": "569", @@ -9127,7 +9132,7 @@ "ShortName": "TRANSFEERA IP S.A.", "Network": "RSFN", "Type": null, - "PixType": "IDRT", + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -9138,9 +9143,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2024-05-15", - "DatePixStarted": "2021-05-04 10:27:26", + "DatePixStarted": "2024-11-04 09:10:00", "DateRegistered": "2024-05-09T12:06:38.0035796+00:00", - "DateUpdated": "2024-05-09T12:06:37.6901159+00:00" + "DateUpdated": "2024-11-20T12:08:12.9891048+00:00" }, { "COMPE": "594", @@ -9396,7 +9401,7 @@ "ShortName": "NITRO SCD S.A.", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -9407,9 +9412,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2024-06-14", - "DatePixStarted": null, + "DatePixStarted": "2024-11-05 09:00:00", "DateRegistered": "2024-06-10T12:07:20.428794+00:00", - "DateUpdated": "2024-06-10T12:07:20.4288223+00:00" + "DateUpdated": "2024-11-20T12:08:13.1074196+00:00" }, { "COMPE": "615", @@ -9495,7 +9500,7 @@ "DetectaFlow": false, "PCR": true, "PCRP": true, - "SalaryPortability": "Destinatário", + "SalaryPortability": "Banco Folha e Destinatário", "Products": [ "Cheque Especial", "Consignado", @@ -9508,7 +9513,7 @@ "DateOperationStarted": "2002-04-22", "DatePixStarted": "2020-11-03 06:30:00", "DateRegistered": "2021-05-05T09:11:12.711524-03:00", - "DateUpdated": "2024-05-15T16:49:45.7333032+00:00" + "DateUpdated": "2024-11-20T12:08:13.9104425+00:00" }, { "COMPE": "626", @@ -9960,6 +9965,29 @@ "DateRegistered": "2024-09-05T12:33:05.3563736+00:00", "DateUpdated": "2024-09-05T12:33:05.3564037+00:00" }, + { + "COMPE": "662", + "ISPB": "32708748", + "Document": "32.708.748/0001-30", + "LongName": "WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.", + "ShortName": "WE PAY OUT IP LTDA.", + "Network": "RSFN", + "Type": null, + "PixType": "IDRT", + "Charge": null, + "CreditDocument": null, + "LegalCheque": false, + "DetectaFlow": false, + "PCR": null, + "PCRP": null, + "SalaryPortability": null, + "Products": null, + "Url": null, + "DateOperationStarted": "2024-11-25", + "DatePixStarted": "2024-07-03 15:28:02", + "DateRegistered": "2024-11-20T12:08:13.9188247+00:00", + "DateUpdated": "2024-11-20T12:08:13.0175833+00:00" + }, { "COMPE": "664", "ISPB": "11414839", @@ -9983,6 +10011,52 @@ "DateRegistered": "2024-09-24T12:07:36.7070087+00:00", "DateUpdated": "2024-09-24T12:07:36.7070368+00:00" }, + { + "COMPE": "665", + "ISPB": "20018183", + "Document": "20.018.183/0001-80", + "LongName": "STARK BANK S.A. - INSTITUICAO DE PAGAMENTO", + "ShortName": "STARK BANK S.A. - IP", + "Network": "RSFN", + "Type": null, + "PixType": "IDRT", + "Charge": null, + "CreditDocument": null, + "LegalCheque": false, + "DetectaFlow": false, + "PCR": null, + "PCRP": null, + "SalaryPortability": null, + "Products": null, + "Url": null, + "DateOperationStarted": "2024-11-25", + "DatePixStarted": "2021-12-21 02:14:54", + "DateRegistered": "2024-11-20T12:08:13.9187948+00:00", + "DateUpdated": "2024-11-20T12:08:12.9272681+00:00" + }, + { + "COMPE": "671", + "ISPB": "26264220", + "Document": "26.264.220/0001-16", + "LongName": "ZERO INSTITUIÇÃO DE PAGAMENTO S.A.", + "ShortName": "ZERO", + "Network": "RSFN", + "Type": null, + "PixType": "IDRT", + "Charge": null, + "CreditDocument": null, + "LegalCheque": false, + "DetectaFlow": false, + "PCR": null, + "PCRP": null, + "SalaryPortability": null, + "Products": null, + "Url": null, + "DateOperationStarted": "2024-11-11", + "DatePixStarted": "2023-11-17 12:11:31", + "DateRegistered": "2024-11-20T12:08:13.9188245+00:00", + "DateUpdated": "2024-11-20T12:08:12.9794672+00:00" + }, { "COMPE": "707", "ISPB": "62232889", diff --git a/data/bancos.md b/data/bancos.md index 2c47d878..02e3752c 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -10,7 +10,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 011 | 61809182 | 61.809.182/0001-30 | CREDIT SUISSE HEDGING-GRIFFO CORRETORA DE VALORES S.A | C.SUISSE HEDGING-GRIFFO CV S/A | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.credit-suisse.com/br/pt.html | 2011-06-28 | - | 2021-05-05T09:11:12.7115317-03:00 | 2021-05-05T09:11:12.7115319-03:00 012 | 04866275 | 04.866.275/0001-63 | Banco Inbursa S.A. | BANCO INBURSA | RSFN | Banco Múltiplo | DRCT | Sim | Não | Não | Não | Sim | Sim | - | Consignado,Outros Créditos.,Pessoal,Veiculos | https://www.bancoinbursa.com | 2017-05-04 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114560-03:00 | 2024-05-15T16:49:45.7301824+00:00 014 | 09274232 | 09.274.232/0001-02 | STATE STREET BRASIL S.A. - BANCO COMERCIAL | STATE STREET BR S.A. BCO COMERCIAL | RSFN | Banco Comercial | - | - | - | Não | Não | - | - | - | - | https://www.statestreet.com/br/en/individual# | 2008-08-08 | - | 2021-05-05T09:11:12.7114679-03:00 | 2021-10-23T20:54:59.5224714-03:00 -015 | 02819125 | 02.819.125/0001-73 | UBS Brasil Corretora de Câmbio, Títulos e Valores Mobiliários S.A. | UBS BRASIL CCTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.ubs.com/br/pt.html | 2011-03-15 | - | 2021-05-05T09:11:12.7114483-03:00 | 2021-05-05T09:11:12.7114485-03:00 +015 | 02819125 | 02.819.125/0001-73 | UBS BB CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS S.A. | UBS BB CCTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.ubs.com/br/pt.html | 2011-03-15 | - | 2021-05-05T09:11:12.7114483-03:00 | 2024-11-20T12:08:11.7801650+00:00 016 | 04715685 | 04.715.685/0001-03 | COOPERATIVA DE CRÉDITO MÚTUO DOS DESPACHANTES DE TRÂNSITO DE SANTA CATARINA E RIO GRANDE DO SUL - SICOOB CREDITRAN | CCM DESP TRÂNS SC E RS | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | Capital de Giro,Cheque Especial,Consignado,Imobiário,Outros Créditos,Pessoal,PRONAMPE,Troca de Modalidade,Veículos | https://www.sicoob.com.br/web/sicoobcreditran/sicoob-creditran | 2012-05-08 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114553-03:00 | 2024-05-15T16:49:45.7420980+00:00 017 | 42272526 | 42.272.526/0001-70 | BNY Mellon Banco S.A. | BNY MELLON BCO S.A. | RSFN | Banco Comercial | - | Não | Sim | Não | Não | - | - | - | - | https://www.bnymellon.com/br/pt.html | 2012-11-19 | - | 2021-05-05T09:11:12.7115161-03:00 | 2022-07-22T07:49:18.4024695+00:00 018 | 57839805 | 57.839.805/0001-40 | Banco Tricury S.A. | BCO TRICURY S.A. | RSFN | Banco Múltiplo | - | Não | Sim | Não | Não | - | - | - | - | https://www.bancotricury.com.br | 2013-08-05 | - | 2021-05-05T09:11:12.7115214-03:00 | 2022-07-22T07:49:18.4026223+00:00 @@ -75,13 +75,13 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 126 | 13220493 | 13.220.493/0001-17 | BR Partners Banco de Investimento S.A. | BR PARTNERS BI | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2013-01-04 | - | 2021-05-05T09:11:12.7114810-03:00 | 2021-05-05T09:11:12.7114812-03:00 127 | 09512542 | 09.512.542/0001-18 | Codepe Corretora de Valores e Câmbio S.A. | CODEPE CVC S.A. | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2012-11-09 | - | 2021-05-05T09:11:12.7114690-03:00 | 2021-05-05T09:11:12.7114691-03:00 128 | 19307785 | 19.307.785/0001-78 | BRAZA BANK S.A. BANCO DE CÂMBIO | BRAZA BANK S.A. BCO DE CÂMBIO | RSFN | Banco de Câmbio | - | Sim | Não | Não | Não | Sim | Não | - | - | https://www.brazabank.com.br | 2015-04-27 | - | 2021-05-05T09:11:12.7114919-03:00 | 2024-05-15T16:49:45.7394853+00:00 -129 | 18520834 | 18.520.834/0001-93 | UBS Brasil Banco de Investimento S.A. | UBS BRASIL BI S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.ubs.com | 2014-03-12 | - | 2021-05-05T09:11:12.7114915-03:00 | 2021-05-05T09:11:12.7114917-03:00 +129 | 18520834 | 18.520.834/0001-93 | UBS BB BANCO DE INVESTIMENTO S.A. | UBS BB BI S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.ubs.com | 2014-03-12 | - | 2021-05-05T09:11:12.7114915-03:00 | 2024-11-20T12:08:11.7856061+00:00 130 | 09313766 | 09.313.766/0001-09 | CARUANA S.A. - SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO | CARUANA SCFI | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha e Destinatário | - | - | 2013-08-12 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114682-03:00 | 2024-05-15T16:49:45.7402304+00:00 131 | 61747085 | 61.747.085/0001-60 | TULLETT PREBON BRASIL CORRETORA DE VALORES E CÂMBIO LTDA | TULLETT PREBON BRASIL CVC LTDA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2013-07-15 | - | 2021-05-05T09:11:12.7115313-03:00 | 2021-05-05T09:11:12.7115315-03:00 132 | 17453575 | 17.453.575/0001-62 | ICBC do Brasil Banco Múltiplo S.A. | ICBC DO BRASIL BM S.A. | RSFN | Banco Múltiplo | - | Sim | Sim | Não | Não | Sim | Não | - | - | https://www.icbc.com.cn | 2013-09-26 | - | 2021-05-05T09:11:12.7114895-03:00 | 2024-05-15T16:49:45.7461071+00:00 133 | 10398952 | 10.398.952/0001-69 | CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS DE CRÉDITO E ECONOMIA FAMILIAR E SOLIDÁRIA - CRESOL CONFEDERAÇÃO | CRESOL CONFEDERAÇÃO | RSFN | - | DRCT | Sim | Sim | Não | Sim | Sim | Sim | Banco folha e Destinatário | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | - | 2016-05-02 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114705-03:00 | 2024-05-15T16:49:45.7411774+00:00 134 | 33862244 | 33.862.244/0001-32 | BGC LIQUIDEZ DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA | BGC LIQUIDEZ DTVM LTDA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2014-07-28 | - | 2021-05-05T09:11:12.7115095-03:00 | 2021-05-05T09:11:12.7115097-03:00 -136 | 00315557 | 00.315.557/0001-11 | CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS UNICRED LTDA. - UNICRED DO BRASIL. | CONF NAC COOP CENTRAIS UNICRED | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha e Destinatário | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | - | 2014-07-28 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7112437-03:00 | 2024-05-15T16:49:45.7414100+00:00 +136 | 00315557 | 00.315.557/0001-11 | COOPERATIVA CENTRAL DE CRÉDITO UNICRED DO BRASIL - UNICRED DO BRASIL | UNICRED DO BRASIL | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha e Destinatário | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | - | 2014-07-28 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7112437-03:00 | 2024-11-20T12:08:11.7778138+00:00 138 | 10853017 | 10.853.017/0001-45 | Get Money Corretora de Câmbio S.A. | GET MONEY CC LTDA | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2014-07-14 | - | 2021-05-05T09:11:12.7114719-03:00 | 2021-05-05T09:11:12.7114721-03:00 139 | 55230916 | 55.230.916/0001-20 | Intesa Sanpaolo Brasil S.A. - Banco Múltiplo | INTESA SANPAOLO BRASIL S.A. BM | RSFN | Banco Múltiplo | - | - | - | Não | Não | - | - | - | - | https://www.intesasanpaolobrasil.com.br | 2015-05-08 | - | 2021-05-05T09:11:12.7115209-03:00 | 2021-05-05T09:11:12.7115212-03:00 140 | 62169875 | 62.169.875/0001-79 | NU INVEST CORRETORA DE VALORES S.A. | NU INVEST CORRETORA DE VALORES S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2015-05-26 | - | 2021-05-05T09:11:12.7115335-03:00 | 2021-09-28T05:25:17.0256160-03:00 @@ -132,9 +132,9 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 268 | 14511781 | 14.511.781/0001-93 | BARI COMPANHIA HIPOTECÁRIA | BARI CIA HIPOTECÁRIA | Internet | - | - | - | - | Não | Não | - | - | - | Consignado,Imobiliário,Pessoal,Veículos | - | 2017-12-21 | - | 2021-05-05T09:11:12.7114848-03:00 | 2023-10-21T12:05:56.1885754+00:00 269 | 53518684 | 53.518.684/0001-84 | BANCO HSBC S.A. | BCO HSBC S.A. | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | - | - | 2018-02-07 | 2022-01-17 10:00:00 | 2021-05-05T09:11:12.7115202-03:00 | 2024-05-15T16:49:45.7299517+00:00 270 | 61444949 | 61.444.949/0001-75 | SAGITUR CORRETORA DE CÂMBIO S.A. | SAGITUR CC - EM LIQUIDAÇÃO EXTRAJUDICIAL | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2018-08-01 | - | 2021-05-05T09:11:12.7115302-03:00 | 2023-11-29T12:06:22.4602221+00:00 -271 | 27842177 | 27.842.177/0001-91 | IB Corretora de Câmbio, Títulos e Valores Mobiliários S.A. | IB CCTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2018-02-26 | - | 2021-05-05T09:11:12.7114984-03:00 | 2021-05-05T09:11:12.7114985-03:00 +271 | 27842177 | 27.842.177/0001-91 | IB Corretora de Câmbio, Títulos e Valores Mobiliários S.A. | IB CCTVM S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2018-02-26 | 2024-11-18 10:00:00 | 2021-05-05T09:11:12.7114984-03:00 | 2024-11-20T12:08:12.9923927+00:00 272 | 00250699 | 00.250.699/0001-48 | AGK CORRETORA DE CAMBIO S.A. | AGK CC S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2018-11-21 | - | 2021-05-05T09:11:12.7112212-03:00 | 2021-05-05T09:11:12.7112295-03:00 -273 | 08253539 | 08.253.539/0001-64 | Cooperativa de Crédito Rural de São Miguel do Oeste - Sulcredi/São Miguel | CCR DE SÃO MIGUEL DO OESTE | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2018-04-24 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114649-03:00 | 2021-05-05T09:11:12.7114651-03:00 +273 | 08253539 | 08.253.539/0001-64 | COOPERATIVA DE CREDITO SULCREDI AMPLEA | COOP SULCREDI AMPLEA | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2018-04-24 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114649-03:00 | 2024-11-20T12:08:11.7822814+00:00 274 | 11581339 | 11.581.339/0001-45 | BMP SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E A EMPRESA DE PEQUENO PORTE LTDA. | BMP SCMEPP LTDA | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | Capital de Giro,Outros Créditos,Pessoal,Troca de Modalidade | - | 2019-09-10 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114738-03:00 | 2024-05-15T16:49:45.7392307+00:00 276 | 11970623 | 11.970.623/0001-03 | BANCO SENFF S.A. | BCO SENFF S.A. | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | Banco Folha | Consignado | - | 2018-06-12 | 2021-04-16 09:00:00 | 2021-05-05T09:11:12.7114792-03:00 | 2024-10-18T12:07:53.6609780+00:00 278 | 27652684 | 27.652.684/0001-62 | Genial Investimentos Corretora de Valores Mobiliários S.A. | GENIAL INVESTIMENTOS CVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2018-05-14 | - | 2021-05-05T09:11:12.7114980-03:00 | 2021-05-05T09:11:12.7114981-03:00 @@ -165,7 +165,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 315 | 03502968 | 03.502.968/0001-04 | PI Distribuidora de Títulos e Valores Mobiliários S.A. | PI DTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2019-01-24 | - | 2021-05-05T09:11:12.7114512-03:00 | 2021-05-05T09:11:12.7114514-03:00 318 | 61186680 | 61.186.680/0001-74 | Banco BMG S.A. | BCO BMG S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha e Destinatário | Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | https://www.bancobmg.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115294-03:00 | 2024-05-15T16:49:45.7229067+00:00 319 | 11495073 | 11.495.073/0001-18 | OM DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA | OM DTVM LTDA | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2019-03-01 | - | 2021-05-05T09:11:12.7114734-03:00 | 2021-05-05T09:11:12.7114735-03:00 -320 | 07450604 | 07.450.604/0001-89 | BANK OF CHINA (BRASIL) BANCO MÚLTIPLO S/A | BOC BRASIL | RSFN | Banco Múltiplo | - | Sim | Sim | Não | Não | Sim | Sim | - | - | https://www.br.ccb.com | 2002-04-22 | - | 2021-05-05T09:11:12.7114616-03:00 | 2024-10-10T12:08:00.7521769+00:00 +320 | 07450604 | 07.450.604/0001-89 | BANK OF CHINA (BRASIL) BANCO MÚLTIPLO S/A | BOC BRASIL | RSFN | Banco Múltiplo | - | Sim | Sim | Não | Não | Sim | Sim | - | Consignado,Imobiliário,Pessoal,Veículos | https://www.br.ccb.com | 2002-04-22 | - | 2021-05-05T09:11:12.7114616-03:00 | 2024-11-20T12:08:13.2876978+00:00 321 | 18188384 | 18.188.384/0001-83 | CREFAZ SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E A EMPRESA DE PEQUENO PORTE S.A. | CREFAZ SCMEPP SA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2019-06-11 | - | 2021-05-05T09:11:12.7114908-03:00 | 2024-05-15T12:07:37.2833030+00:00 322 | 01073966 | 01.073.966/0001-11 | Cooperativa de Crédito Rural de Abelardo Luz - Sulcredi/Crediluz | CCR DE ABELARDO LUZ | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco Folha | - | - | 2019-06-14 | 2022-03-14 10:00:00 | 2021-05-05T09:11:12.7114423-03:00 | 2024-05-15T16:49:45.7425568+00:00 323 | 10573521 | 10.573.521/0001-91 | MERCADO PAGO INSTITUIÇÃO DE PAGAMENTO LTDA. | MERCADO PAGO IP LTDA. | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | Destinatário | - | - | 2019-06-24 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114708-03:00 | 2024-05-15T16:49:45.7475881+00:00 @@ -179,7 +179,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 332 | 13140088 | 13.140.088/0001-99 | ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO | ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO | RSFN | - | DRCT | Sim | Sim | Não | Não | - | - | Banco folha e Destinatário | - | - | 2019-08-16 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114807-03:00 | 2022-12-13T12:06:52.2983548+00:00 334 | 15124464 | 15.124.464/0001-87 | BANCO BESA S.A. | BANCO BESA S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-02-22 | - | 2023-03-03T14:56:55.3112604+00:00 | 2023-03-03T14:56:55.3112605+00:00 335 | 27098060 | 27.098.060/0001-45 | Banco Digio S.A. | BANCO DIGIO | RSFN | Banco Múltiplo | DRCT | - | - | Não | Não | - | - | Destinatário | Consignado,Outros Créditos | https://www.digio.com.br | 2019-11-25 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114964-03:00 | 2023-10-21T12:05:56.1792295+00:00 -336 | 31872495 | 31.872.495/0001-72 | Banco C6 S.A. | BCO C6 S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Destinatário | Capital de Giro,Cheque Especial,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.c6bank.com | 2019-01-31 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115026-03:00 | 2024-08-09T12:07:01.1518628+00:00 +336 | 31872495 | 31.872.495/0001-72 | Banco C6 S.A. | BCO C6 S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco Folha e Destinatário | Capital de Giro,Cheque Especial,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.c6bank.com | 2019-01-31 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115026-03:00 | 2024-11-20T12:08:13.9098123+00:00 340 | 09554480 | 09.554.480/0001-07 | SUPERDIGITAL INSTITUIÇÃO DE PAGAMENTO S.A. | SUPERDIGITAL I.P. S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2019-09-25 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114697-03:00 | 2022-07-07T12:06:14.8084022+00:00 341 | 60701190 | 60.701.190/0001-04 | ITAÚ UNIBANCO S.A. | ITAÚ UNIBANCO S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Sim | Não | Sim | Sim | Banco folha e Destinatário | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.itau.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115257-03:00 | 2024-05-15T16:49:45.7308751+00:00 342 | 32997490 | 32.997.490/0001-39 | Creditas Sociedade de Crédito Direto S.A. | CREDITAS SCD | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2019-07-26 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115047-03:00 | 2021-05-05T09:11:12.7115049-03:00 @@ -207,7 +207,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 376 | 33172537 | 33.172.537/0001-98 | BANCO J.P. MORGAN S.A. | BCO J.P. MORGAN S.A. | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | Pessoal | https://www.jpmorgan.com | 2002-04-22 | 2022-10-01 10:00:00 | 2021-05-05T09:11:12.7115066-03:00 | 2024-05-15T16:49:45.7311056+00:00 377 | 17826860 | 17.826.860/0001-81 | BMS SOCIEDADE DE CRÉDITO DIRETO S.A. | BMS SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2020-10-01 | 2024-01-11 11:00:00 | 2021-05-05T09:11:12.7114904-03:00 | 2024-01-09T12:06:14.2973546+00:00 378 | 01852137 | 01.852.137/0001-37 | BANCO BRASILEIRO DE CRÉDITO SOCIEDADE ANÔNIMA | BCO BRASILEIRO DE CRÉDITO S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | Capita de Giro PJ,Crédito Pessoal,Financiamento de Veículos,Outros,Troca de Modalidade | - | 2020-09-11 | 2024-03-18 06:00:00 | 2021-05-05T09:11:12.7114454-03:00 | 2024-08-31T12:29:47.9802220+00:00 -379 | 01658426 | 01.658.426/0001-08 | COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA. | CECM COOPERFORTE | RSFN | - | - | - | - | Não | Não | - | - | - | Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | - | 2020-09-01 | - | 2021-05-05T09:11:12.7114443-03:00 | 2023-10-21T12:05:56.8456698+00:00 +379 | 01658426 | 01.658.426/0001-08 | COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA. | CECM COOPERFORTE | RSFN | - | DRCT | - | - | Não | Não | - | - | - | Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | - | 2020-09-01 | 2024-11-25 09:00:00 | 2021-05-05T09:11:12.7114443-03:00 | 2024-11-20T12:08:12.5504802+00:00 380 | 22896431 | 22.896.431/0001-10 | PICPAY INSTITUIçãO DE PAGAMENTO S.A. | PICPAY | RSFN | Banco Múltiplo | DRCT | Sim | Não | Não | Não | Sim | Sim | Destinatário | - | https://www.picpay.com.br | 2020-10-15 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114941-03:00 | 2024-05-15T16:49:45.7492256+00:00 381 | 60814191 | 60.814.191/0001-57 | BANCO MERCEDES-BENZ DO BRASIL S.A. | BCO MERCEDES-BENZ S.A. | RSFN | Banco Múltiplo | - | - | - | Não | Não | - | - | - | Pessoal,Veículos | https://www.bancomercedes-benz.com.br | 2020-05-25 | - | 2021-05-05T09:11:12.7115265-03:00 | 2023-10-21T12:05:56.1824214+00:00 382 | 04307598 | 04.307.598/0001-17 | FIDÚCIA SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E À EMPRESA DE PEQUENO PORTE LIMITADA. | FIDUCIA SCMEPP LTDA | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2020-07-31 | 2021-12-15 10:00:00 | 2021-05-05T09:11:12.7114541-03:00 | 2023-09-25T12:28:23.0763971+00:00 @@ -262,7 +262,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 444 | 40654622 | 40.654.622/0001-58 | TRINUS SOCIEDADE DE CRÉDITO DIRETO S.A. | TRINUS SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2021-09-09 | 2022-11-07 17:00:00 | 2021-09-13T19:08:16.9817382-03:00 | 2022-10-19T12:08:46.7241587+00:00 445 | 35551187 | 35.551.187/0001-04 | PLANTAE S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO | PLANTAE CFI | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2021-06-23 | - | 2021-06-22T10:03:37.2758379-03:00 | 2021-06-22T10:03:37.2758811-03:00 447 | 12392983 | 12.392.983/0001-38 | MIRAE ASSET (BRASIL) CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS LTDA. | MIRAE ASSET (BRASIL) CCTVM LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2021-09-27 | - | 2021-09-28T05:25:19.3475750-03:00 | 2023-10-06T12:06:37.6641955+00:00 -448 | 39669186 | 39.669.186/0001-01 | HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. | HEMERA DTVM LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2021-08-17 | - | 2021-08-24T13:06:55.8926622-03:00 | 2021-08-24T13:06:55.8926625-03:00 +448 | 39669186 | 39.669.186/0001-01 | HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. | HEMERA DTVM LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2021-08-17 | 2024-11-11 09:00:00 | 2021-08-24T13:06:55.8926622-03:00 | 2024-11-20T12:08:13.0684787+00:00 449 | 37555231 | 37.555.231/0001-71 | DM SOCIEDADE DE CRÉDITO DIRETO S.A. | DM | RSFN | - | - | Sim | Não | Não | Não | Sim | Sim | - | - | - | 2021-10-22 | - | 2021-10-23T20:55:03.4293187-03:00 | 2024-05-15T16:49:45.7444605+00:00 450 | 13203354 | 13.203.354/0001-85 | FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A. | FITBANK IP | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | - | - | 2021-06-30 | 2022-03-08 10:30:00 | 2021-07-06T07:20:49.2254617-03:00 | 2024-05-15T16:49:45.7454123+00:00 451 | 40475846 | 40.475.846/0001-00 | J17 - SOCIEDADE DE CRÉDITO DIRETO S/A | J17 - SCD S/A | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2022-01-18 | 2023-11-24 10:00:00 | 2022-02-01T08:17:39.0832206+00:00 | 2023-11-23T12:06:11.9151500+00:00 @@ -319,7 +319,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 527 | 44478623 | 44.478.623/0001-40 | ATICCA - SOCIEDADE DE CRÉDITO DIRETO S.A. | ATICCA SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-02-06 | - | 2023-03-03T14:56:55.3112612+00:00 | 2023-03-03T14:56:55.3112613+00:00 528 | 34829992 | 34.829.992/0001-86 | REAG TRUST DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. | REAG TRUST DTVM | RSFN | - | DRCT | - | - | Não | Não | Sim | Sim | - | - | - | 2023-03-06 | 2024-04-01 10:00:00 | 2023-03-03T14:56:55.3112606+00:00 | 2024-09-25T12:08:06.7384843+00:00 529 | 17079937 | 17.079.937/0001-05 | PINBANK BRASIL INSTITUIÇÃO DE PAGAMENTO S.A. | PINBANK IP | RSFN | - | DRCT | - | - | Não | Não | Sim | Sim | - | - | - | 2022-11-16 | 2023-06-07 09:15:00 | 2022-11-12T12:06:34.2025683+00:00 | 2024-05-15T16:49:45.7494567+00:00 -530 | 47873449 | 47.873.449/0001-28 | SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A. | SER FINANCE SCD S.A. | RSFN | - | - | Sim | Não | Não | Não | Sim | Sim | - | Capita de Giro PJ,Crédito Consignado,Crédito Pessoal,Troca de Modalidade | - | 2023-03-14 | - | 2023-03-09T12:07:29.7846292+00:00 | 2024-05-15T16:49:45.7504877+00:00 +530 | 47873449 | 47.873.449/0001-28 | SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A. | SER FINANCE SCD S.A. | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | Capita de Giro PJ,Crédito Consignado,Crédito Pessoal,Troca de Modalidade | - | 2023-03-14 | 2024-11-13 09:00:00 | 2023-03-09T12:07:29.7846292+00:00 | 2024-11-20T12:08:13.1020585+00:00 531 | 34337707 | 34.337.707/0001-00 | BMP SOCIEDADE DE CRÉDITO DIRETO S.A | BMP SCD S.A. | RSFN | - | - | - | - | Não | Não | Sim | Sim | - | Capital de Giro,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade | - | 2023-05-22 | - | 2023-09-25T12:28:25.1347544+00:00 | 2024-05-21T12:06:40.2011379+00:00 532 | 45745537 | 45.745.537/0001-19 | EAGLE SOCIEDADE DE CRÉDITO DIRETO S.A. | EAGLE SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-04-03 | - | 2023-03-29T12:07:07.8301112+00:00 | 2023-03-29T12:07:07.8301112+00:00 533 | 22575466 | 22.575.466/0001-58 | SRM BANK INSTITUIÇÃO DE PAGAMENTO S/A | SRM BANK | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-07-17 | - | 2023-09-25T12:28:25.1347537+00:00 | 2024-03-22T12:06:54.1991257+00:00 @@ -356,7 +356,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 565 | 74014747 | 74.014.747/0001-35 | ÁGORA CORRETORA DE TITULOS E VALORES MOBILIARIOS S.A. | ÁGORA CTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-11-20 | - | 2023-11-14T12:06:11.7936380+00:00 | 2023-11-14T12:06:11.7936735+00:00 566 | 23114447 | 23.114.447/0001-97 | FLAGSHIP INSTITUICAO DE PAGAMENTOS LTDA | FLAGSHIP IP LTDA | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2023-10-30 | 2020-11-03 06:30:00 | 2023-10-24T12:06:14.1207735+00:00 | 2023-10-24T12:06:12.8841523+00:00 567 | 33040601 | 33.040.601/0001-87 | MERCANTIL FINANCEIRA S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO | MERCANTIL FINANCEIRA | Internet | - | - | - | - | Não | Não | - | - | - | Consignado,Outros Créditos,Veículos | - | 2023-08-28 | - | 2023-09-25T12:28:25.1347543+00:00 | 2024-06-17T12:07:15.0691344+00:00 -568 | 49933388 | 49.933.388/0001-72 | BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A. | BRCONDOS SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-12-08 | - | 2023-12-04T12:06:24.3671440+00:00 | 2023-12-04T12:06:24.3671662+00:00 +568 | 49933388 | 49.933.388/0001-72 | BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A. | BRCONDOS SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2023-12-08 | 2024-11-13 11:00:00 | 2023-12-04T12:06:24.3671440+00:00 | 2024-11-20T12:08:13.1045667+00:00 569 | 12473687 | 12.473.687/0001-61 | CONTA PRONTA INSTITUICAO DE PAGAMENTO LTDA | CONTA PRONTA IP | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-10-31 | - | 2023-10-25T12:06:22.8368523+00:00 | 2023-10-25T12:06:22.8368905+00:00 572 | 51414521 | 51.414.521/0001-26 | ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A. | ALL IN CRED SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-12-22 | - | 2023-12-18T12:06:50.1170089+00:00 | 2023-12-18T12:06:50.1170312+00:00 575 | 48584954 | 48.584.954/0001-15 | DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO. | DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-13 | - | 2024-06-07T12:08:28.2767917+00:00 | 2024-06-07T12:08:28.2768294+00:00 @@ -377,7 +377,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 590 | 40473435 | 40.473.435/0001-78 | REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS INSTITUICAO DE PAGAMENTO S.A. | REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-03-04 | 2022-12-13 09:09:43 | 2024-02-28T12:06:05.3104086+00:00 | 2024-02-28T12:06:04.5801118+00:00 591 | 02671743 | 02.671.743/0001-19 | BANVOX DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA | BANVOX DTVM | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-28 | - | 2024-06-24T12:07:25.1385983+00:00 | 2024-06-24T12:07:25.1386177+00:00 592 | 45548763 | 45.548.763/0001-00 | INSTITUIÇÃO DE PAGAMENTOS MAPS LTDA. | MAPS IP LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-06-03 | 2024-10-07 11:00:00 | 2024-05-28T12:06:53.5582230+00:00 | 2024-10-02T12:08:04.4963575+00:00 -593 | 27084098 | 27.084.098/0001-69 | TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A | TRANSFEERA IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-05-15 | 2021-05-04 10:27:26 | 2024-05-09T12:06:38.0035796+00:00 | 2024-05-09T12:06:37.6901159+00:00 +593 | 27084098 | 27.084.098/0001-69 | TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A | TRANSFEERA IP S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-05-15 | 2024-11-04 09:10:00 | 2024-05-09T12:06:38.0035796+00:00 | 2024-11-20T12:08:12.9891048+00:00 594 | 48703388 | 48.703.388/0001-13 | ASA SOCIEDADE DE CRÉDITO DIRETO S.A. | ASA SOCIEDADE DE CRÉDITO DIRETO S.A. | RSFN | - | DRCT | - | - | Não | Não | Sim | Sim | - | - | - | 2024-03-11 | 2024-07-05 09:00:00 | 2024-03-05T12:06:35.1241273+00:00 | 2024-09-19T12:07:45.0932620+00:00 595 | 19468242 | 19.468.242/0001-32 | ZOOP TECNOLOGIA & INSTITUICAO DE PAGAMENTO S.A. | ZOOP MEIOS DE PAGAMENTO | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-03-21 | 2020-11-03 06:30:00 | 2024-03-15T12:06:05.5274606+00:00 | 2024-03-15T12:06:05.1580392+00:00 597 | 34747388 | 34.747.388/0001-00 | ISSUER INSTITUICAO DE PAGAMENTO LTDA. | ISSUER IP LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-03-08 | 2024-09-05 10:10:00 | 2024-03-04T12:10:35.0004133+00:00 | 2024-09-06T12:31:46.1754236+00:00 @@ -388,11 +388,11 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 611 | 61820817 | 61.820.817/0001-09 | Banco Paulista S.A. | BCO PAULISTA S.A. | RSFN | Banco Múltiplo | - | Sim | Sim | Não | Não | Sim | Não | - | Consignado,Imobiliário,Troca de Modalidade | https://www.bancopaulista.com.br | 2002-04-22 | - | 2021-05-05T09:11:12.7115321-03:00 | 2024-05-15T16:49:45.7335337+00:00 612 | 31880826 | 31.880.826/0001-16 | Banco Guanabara S.A. | BCO GUANABARA S.A. | RSFN | Banco Múltiplo | DRCT | Não | Sim | Não | Não | - | - | - | - | https://www.bancoguanabara.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115029-03:00 | 2022-06-23T13:48:15.3478476+00:00 613 | 60850229 | 60.850.229/0001-47 | Omni Banco S.A. | OMNI BANCO S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Não | - | Outros Créditos,Pessoal,Veículos | - | 2002-04-22 | 2021-05-27 08:00:00 | 2021-05-05T09:11:12.7115268-03:00 | 2024-05-15T16:49:45.7485284+00:00 -614 | 52440987 | 52.440.987/0001-69 | NITRO SOCIEDADE DE CRÉDITO DIRETO S.A. | NITRO SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-14 | - | 2024-06-10T12:07:20.4287940+00:00 | 2024-06-10T12:07:20.4288223+00:00 +614 | 52440987 | 52.440.987/0001-69 | NITRO SOCIEDADE DE CRÉDITO DIRETO S.A. | NITRO SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-06-14 | 2024-11-05 09:00:00 | 2024-06-10T12:07:20.4287940+00:00 | 2024-11-20T12:08:13.1074196+00:00 615 | 37470405 | 37.470.405/0001-01 | SMART SOLUTIONS GROUP INSTITUICAO DE PAGAMENTO LTDA | SMART SOLUTIONS GROUP IP LTDA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-10-04 | - | 2024-09-30T12:08:41.4084970+00:00 | 2024-09-30T12:08:41.4085273+00:00 619 | 49931906 | 49.931.906/0001-19 | TRIO INSTITUICAO DE PAGAMENTO LTDA. | TRIO IP LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-08-01 | - | 2024-07-26T12:29:30.1748074+00:00 | 2024-07-26T12:29:30.1748268+00:00 620 | 51342763 | 51.342.763/0001-51 | REVOLUT SOCIEDADE DE CRÉDITO DIRETO S.A. | REVOLUT SCD S.A. | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2024-05-15 | - | 2024-05-09T12:06:38.0036073+00:00 | 2024-05-09T12:06:38.0036074+00:00 -623 | 59285411 | 59.285.411/0001-13 | Banco Pan S.A. | BANCO PAN | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Destinatário | Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | https://www.bancopan.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115240-03:00 | 2024-05-15T16:49:45.7333032+00:00 +623 | 59285411 | 59.285.411/0001-13 | Banco Pan S.A. | BANCO PAN | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco Folha e Destinatário | Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | https://www.bancopan.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115240-03:00 | 2024-11-20T12:08:13.9104425+00:00 626 | 61348538 | 61.348.538/0001-86 | BANCO C6 CONSIGNADO S.A. | BCO C6 CONSIG | RSFN | - | - | - | - | Não | Não | - | - | - | Consignado,Veículos | - | 2002-04-22 | - | 2021-05-05T09:11:12.7115298-03:00 | 2023-10-21T12:05:56.1759027+00:00 630 | 58497702 | 58.497.702/0001-02 | BANCO LETSBANK S.A. | BCO LETSBANK S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | - | - | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115221-03:00 | 2024-05-15T16:49:45.7316055+00:00 632 | 52586293 | 52.586.293/0001-34 | Z-ON SOCIEDADE DE CRÉDITO DIRETO S.A. | Z-ON SCD S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-10-03 | 2024-10-03 07:07:47 | 2024-09-27T12:08:07.9907432+00:00 | 2024-10-04T12:08:01.0865649+00:00 @@ -411,7 +411,10 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 659 | 35210410 | 35.210.410/0001-41 | ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA | ONEKEY PAYMENTS IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | 2022-09-12 11:04:30 | 2024-09-24T12:07:36.7070372+00:00 | 2024-09-24T12:07:35.7979065+00:00 660 | 34471744 | 34.471.744/0001-06 | PAGME INSTITUIÇÃO DE PAGAMENTO LTDA. | PAGME IP LTDA | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-10-22 | 2023-09-19 15:07:18 | 2024-10-16T12:07:56.4868924+00:00 | 2024-10-16T12:07:55.6307764+00:00 661 | 55428859 | 55.428.859/0001-98 | FREEX CORRETORA DE CAMBIO S.A. | FREEX CC S.A. | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-11 | - | 2024-09-05T12:33:05.3563736+00:00 | 2024-09-05T12:33:05.3564037+00:00 +662 | 32708748 | 32.708.748/0001-30 | WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA. | WE PAY OUT IP LTDA. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2024-07-03 15:28:02 | 2024-11-20T12:08:13.9188247+00:00 | 2024-11-20T12:08:13.0175833+00:00 664 | 11414839 | 11.414.839/0001-92 | EAGLE INSTITUICAO DE PAGAMENTO LTDA. | EAGLE IP LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | - | 2024-09-24T12:07:36.7070087+00:00 | 2024-09-24T12:07:36.7070368+00:00 +665 | 20018183 | 20.018.183/0001-80 | STARK BANK S.A. - INSTITUICAO DE PAGAMENTO | STARK BANK S.A. - IP | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2021-12-21 02:14:54 | 2024-11-20T12:08:13.9187948+00:00 | 2024-11-20T12:08:12.9272681+00:00 +671 | 26264220 | 26.264.220/0001-16 | ZERO INSTITUIÇÃO DE PAGAMENTO S.A. | ZERO | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-11 | 2023-11-17 12:11:31 | 2024-11-20T12:08:13.9188245+00:00 | 2024-11-20T12:08:12.9794672+00:00 707 | 62232889 | 62.232.889/0001-90 | Banco Daycoval S.A. | BCO DAYCOVAL S.A | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.daycoval.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115338-03:00 | 2024-05-15T16:49:45.7268243+00:00 712 | 78632767 | 78.632.767/0001-20 | OURIBANK S.A. BANCO MÚLTIPLO | OURIBANK S.A. | RSFN | Banco Múltiplo | DRCT | - | - | Não | Não | - | - | - | - | https://www.ourinvest.com.br | 2014-01-28 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115456-03:00 | 2024-06-25T12:06:53.3082056+00:00 719 | 33884941 | 33.884.941/0001-94 | BANCO MASTER MÚLTIPLO S.A. | BANCO MASTER MÚLTIPLO | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-02 | - | 2024-08-29T12:32:25.2409945+00:00 | 2024-08-29T12:32:25.2410239+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index ce9d1c77..d6f1ac25 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -6,7 +6,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('011','61809182','61.809.182/0001-30','CREDIT SUISSE HEDGING-GRIFFO CORRETORA DE VALORES S.A','C.SUISSE HEDGING-GRIFFO CV S/A',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.credit-suisse.com/br/pt.html','2011-06-28',NULL,'2021-05-05T09:11:12.7115317-03:00','2021-05-05T09:11:12.7115319-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('012','04866275','04.866.275/0001-63','Banco Inbursa S.A.','BANCO INBURSA','Banco Múltiplo','DRCT','RSFN',1,0,0,0,1,1,NULL,'Consignado,Outros Créditos.,Pessoal,Veiculos','https://www.bancoinbursa.com','2017-05-04','2020-11-03 06:30:00','2021-05-05T09:11:12.7114560-03:00','2024-05-15T16:49:45.7301824+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('014','09274232','09.274.232/0001-02','STATE STREET BRASIL S.A. - BANCO COMERCIAL','STATE STREET BR S.A. BCO COMERCIAL','Banco Comercial',NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.statestreet.com/br/en/individual#','2008-08-08',NULL,'2021-05-05T09:11:12.7114679-03:00','2021-10-23T20:54:59.5224714-03:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('015','02819125','02.819.125/0001-73','UBS Brasil Corretora de Câmbio, Títulos e Valores Mobiliários S.A.','UBS BRASIL CCTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.ubs.com/br/pt.html','2011-03-15',NULL,'2021-05-05T09:11:12.7114483-03:00','2021-05-05T09:11:12.7114485-03:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('015','02819125','02.819.125/0001-73','UBS BB CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS S.A.','UBS BB CCTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.ubs.com/br/pt.html','2011-03-15',NULL,'2021-05-05T09:11:12.7114483-03:00','2024-11-20T12:08:11.7801650+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('016','04715685','04.715.685/0001-03','COOPERATIVA DE CRÉDITO MÚTUO DOS DESPACHANTES DE TRÂNSITO DE SANTA CATARINA E RIO GRANDE DO SUL - SICOOB CREDITRAN','CCM DESP TRÂNS SC E RS',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,'Capital de Giro,Cheque Especial,Consignado,Imobiário,Outros Créditos,Pessoal,PRONAMPE,Troca de Modalidade,Veículos','https://www.sicoob.com.br/web/sicoobcreditran/sicoob-creditran','2012-05-08','2020-11-03 06:30:00','2021-05-05T09:11:12.7114553-03:00','2024-05-15T16:49:45.7420980+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('017','42272526','42.272.526/0001-70','BNY Mellon Banco S.A.','BNY MELLON BCO S.A.','Banco Comercial',NULL,'RSFN',0,1,0,0,NULL,NULL,NULL,NULL,'https://www.bnymellon.com/br/pt.html','2012-11-19',NULL,'2021-05-05T09:11:12.7115161-03:00','2022-07-22T07:49:18.4024695+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('018','57839805','57.839.805/0001-40','Banco Tricury S.A.','BCO TRICURY S.A.','Banco Múltiplo',NULL,'RSFN',0,1,0,0,NULL,NULL,NULL,NULL,'https://www.bancotricury.com.br','2013-08-05',NULL,'2021-05-05T09:11:12.7115214-03:00','2022-07-22T07:49:18.4026223+00:00'); @@ -71,13 +71,13 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('126','13220493','13.220.493/0001-17','BR Partners Banco de Investimento S.A.','BR PARTNERS BI',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2013-01-04',NULL,'2021-05-05T09:11:12.7114810-03:00','2021-05-05T09:11:12.7114812-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('127','09512542','09.512.542/0001-18','Codepe Corretora de Valores e Câmbio S.A.','CODEPE CVC S.A.',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2012-11-09',NULL,'2021-05-05T09:11:12.7114690-03:00','2021-05-05T09:11:12.7114691-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('128','19307785','19.307.785/0001-78','BRAZA BANK S.A. BANCO DE CÂMBIO','BRAZA BANK S.A. BCO DE CÂMBIO','Banco de Câmbio',NULL,'RSFN',1,0,0,0,1,0,NULL,NULL,'https://www.brazabank.com.br','2015-04-27',NULL,'2021-05-05T09:11:12.7114919-03:00','2024-05-15T16:49:45.7394853+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('129','18520834','18.520.834/0001-93','UBS Brasil Banco de Investimento S.A.','UBS BRASIL BI S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.ubs.com','2014-03-12',NULL,'2021-05-05T09:11:12.7114915-03:00','2021-05-05T09:11:12.7114917-03:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('129','18520834','18.520.834/0001-93','UBS BB BANCO DE INVESTIMENTO S.A.','UBS BB BI S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.ubs.com','2014-03-12',NULL,'2021-05-05T09:11:12.7114915-03:00','2024-11-20T12:08:11.7856061+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('130','09313766','09.313.766/0001-09','CARUANA S.A. - SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO','CARUANA SCFI',NULL,'DRCT','RSFN',1,1,0,0,1,1,'Banco folha e Destinatário',NULL,NULL,'2013-08-12','2020-11-03 06:30:00','2021-05-05T09:11:12.7114682-03:00','2024-05-15T16:49:45.7402304+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('131','61747085','61.747.085/0001-60','TULLETT PREBON BRASIL CORRETORA DE VALORES E CÂMBIO LTDA','TULLETT PREBON BRASIL CVC LTDA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2013-07-15',NULL,'2021-05-05T09:11:12.7115313-03:00','2021-05-05T09:11:12.7115315-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('132','17453575','17.453.575/0001-62','ICBC do Brasil Banco Múltiplo S.A.','ICBC DO BRASIL BM S.A.','Banco Múltiplo',NULL,'RSFN',1,1,0,0,1,0,NULL,NULL,'https://www.icbc.com.cn','2013-09-26',NULL,'2021-05-05T09:11:12.7114895-03:00','2024-05-15T16:49:45.7461071+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('133','10398952','10.398.952/0001-69','CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS DE CRÉDITO E ECONOMIA FAMILIAR E SOLIDÁRIA - CRESOL CONFEDERAÇÃO','CRESOL CONFEDERAÇÃO',NULL,'DRCT','RSFN',1,1,0,1,1,1,'Banco folha e Destinatário','Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos',NULL,'2016-05-02','2020-11-03 06:30:00','2021-05-05T09:11:12.7114705-03:00','2024-05-15T16:49:45.7411774+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('134','33862244','33.862.244/0001-32','BGC LIQUIDEZ DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA','BGC LIQUIDEZ DTVM LTDA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2014-07-28',NULL,'2021-05-05T09:11:12.7115095-03:00','2021-05-05T09:11:12.7115097-03:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('136','00315557','00.315.557/0001-11','CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS UNICRED LTDA. - UNICRED DO BRASIL.','CONF NAC COOP CENTRAIS UNICRED',NULL,'DRCT','RSFN',1,1,0,0,1,1,'Banco folha e Destinatário','Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos',NULL,'2014-07-28','2020-11-03 06:30:00','2021-05-05T09:11:12.7112437-03:00','2024-05-15T16:49:45.7414100+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('136','00315557','00.315.557/0001-11','COOPERATIVA CENTRAL DE CRÉDITO UNICRED DO BRASIL - UNICRED DO BRASIL','UNICRED DO BRASIL',NULL,'DRCT','RSFN',1,1,0,0,1,1,'Banco folha e Destinatário','Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos',NULL,'2014-07-28','2020-11-03 06:30:00','2021-05-05T09:11:12.7112437-03:00','2024-11-20T12:08:11.7778138+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('138','10853017','10.853.017/0001-45','Get Money Corretora de Câmbio S.A.','GET MONEY CC LTDA',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2014-07-14',NULL,'2021-05-05T09:11:12.7114719-03:00','2021-05-05T09:11:12.7114721-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('139','55230916','55.230.916/0001-20','Intesa Sanpaolo Brasil S.A. - Banco Múltiplo','INTESA SANPAOLO BRASIL S.A. BM','Banco Múltiplo',NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.intesasanpaolobrasil.com.br','2015-05-08',NULL,'2021-05-05T09:11:12.7115209-03:00','2021-05-05T09:11:12.7115212-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('140','62169875','62.169.875/0001-79','NU INVEST CORRETORA DE VALORES S.A.','NU INVEST CORRETORA DE VALORES S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2015-05-26',NULL,'2021-05-05T09:11:12.7115335-03:00','2021-09-28T05:25:17.0256160-03:00'); @@ -128,9 +128,9 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('268','14511781','14.511.781/0001-93','BARI COMPANHIA HIPOTECÁRIA','BARI CIA HIPOTECÁRIA',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,'Consignado,Imobiliário,Pessoal,Veículos',NULL,'2017-12-21',NULL,'2021-05-05T09:11:12.7114848-03:00','2023-10-21T12:05:56.1885754+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('269','53518684','53.518.684/0001-84','BANCO HSBC S.A.','BCO HSBC S.A.',NULL,'DRCT','RSFN',1,1,0,0,1,1,NULL,NULL,NULL,'2018-02-07','2022-01-17 10:00:00','2021-05-05T09:11:12.7115202-03:00','2024-05-15T16:49:45.7299517+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('270','61444949','61.444.949/0001-75','SAGITUR CORRETORA DE CÂMBIO S.A.','SAGITUR CC - EM LIQUIDAÇÃO EXTRAJUDICIAL',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-08-01',NULL,'2021-05-05T09:11:12.7115302-03:00','2023-11-29T12:06:22.4602221+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('271','27842177','27.842.177/0001-91','IB Corretora de Câmbio, Títulos e Valores Mobiliários S.A.','IB CCTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-02-26',NULL,'2021-05-05T09:11:12.7114984-03:00','2021-05-05T09:11:12.7114985-03:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('271','27842177','27.842.177/0001-91','IB Corretora de Câmbio, Títulos e Valores Mobiliários S.A.','IB CCTVM S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-02-26','2024-11-18 10:00:00','2021-05-05T09:11:12.7114984-03:00','2024-11-20T12:08:12.9923927+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('272','00250699','00.250.699/0001-48','AGK CORRETORA DE CAMBIO S.A.','AGK CC S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-11-21',NULL,'2021-05-05T09:11:12.7112212-03:00','2021-05-05T09:11:12.7112295-03:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('273','08253539','08.253.539/0001-64','Cooperativa de Crédito Rural de São Miguel do Oeste - Sulcredi/São Miguel','CCR DE SÃO MIGUEL DO OESTE',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-04-24','2020-11-03 06:30:00','2021-05-05T09:11:12.7114649-03:00','2021-05-05T09:11:12.7114651-03:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('273','08253539','08.253.539/0001-64','COOPERATIVA DE CREDITO SULCREDI AMPLEA','COOP SULCREDI AMPLEA',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-04-24','2020-11-03 06:30:00','2021-05-05T09:11:12.7114649-03:00','2024-11-20T12:08:11.7822814+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('274','11581339','11.581.339/0001-45','BMP SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E A EMPRESA DE PEQUENO PORTE LTDA.','BMP SCMEPP LTDA',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,'Capital de Giro,Outros Créditos,Pessoal,Troca de Modalidade',NULL,'2019-09-10','2020-11-03 06:30:00','2021-05-05T09:11:12.7114738-03:00','2024-05-15T16:49:45.7392307+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('276','11970623','11.970.623/0001-03','BANCO SENFF S.A.','BCO SENFF S.A.',NULL,'DRCT','RSFN',1,0,0,0,1,1,'Banco Folha','Consignado',NULL,'2018-06-12','2021-04-16 09:00:00','2021-05-05T09:11:12.7114792-03:00','2024-10-18T12:07:53.6609780+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('278','27652684','27.652.684/0001-62','Genial Investimentos Corretora de Valores Mobiliários S.A.','GENIAL INVESTIMENTOS CVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2018-05-14',NULL,'2021-05-05T09:11:12.7114980-03:00','2021-05-05T09:11:12.7114981-03:00'); @@ -161,7 +161,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('315','03502968','03.502.968/0001-04','PI Distribuidora de Títulos e Valores Mobiliários S.A.','PI DTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2019-01-24',NULL,'2021-05-05T09:11:12.7114512-03:00','2021-05-05T09:11:12.7114514-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('318','61186680','61.186.680/0001-74','Banco BMG S.A.','BCO BMG S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Banco folha e Destinatário','Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos','https://www.bancobmg.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115294-03:00','2024-05-15T16:49:45.7229067+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('319','11495073','11.495.073/0001-18','OM DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA','OM DTVM LTDA',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2019-03-01',NULL,'2021-05-05T09:11:12.7114734-03:00','2021-05-05T09:11:12.7114735-03:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('320','07450604','07.450.604/0001-89','BANK OF CHINA (BRASIL) BANCO MÚLTIPLO S/A','BOC BRASIL','Banco Múltiplo',NULL,'RSFN',1,1,0,0,1,1,NULL,NULL,'https://www.br.ccb.com','2002-04-22',NULL,'2021-05-05T09:11:12.7114616-03:00','2024-10-10T12:08:00.7521769+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('320','07450604','07.450.604/0001-89','BANK OF CHINA (BRASIL) BANCO MÚLTIPLO S/A','BOC BRASIL','Banco Múltiplo',NULL,'RSFN',1,1,0,0,1,1,NULL,'Consignado,Imobiliário,Pessoal,Veículos','https://www.br.ccb.com','2002-04-22',NULL,'2021-05-05T09:11:12.7114616-03:00','2024-11-20T12:08:13.2876978+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('321','18188384','18.188.384/0001-83','CREFAZ SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E A EMPRESA DE PEQUENO PORTE S.A.','CREFAZ SCMEPP SA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2019-06-11',NULL,'2021-05-05T09:11:12.7114908-03:00','2024-05-15T12:07:37.2833030+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('322','01073966','01.073.966/0001-11','Cooperativa de Crédito Rural de Abelardo Luz - Sulcredi/Crediluz','CCR DE ABELARDO LUZ',NULL,'DRCT','RSFN',1,1,0,0,1,1,'Banco Folha',NULL,NULL,'2019-06-14','2022-03-14 10:00:00','2021-05-05T09:11:12.7114423-03:00','2024-05-15T16:49:45.7425568+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('323','10573521','10.573.521/0001-91','MERCADO PAGO INSTITUIÇÃO DE PAGAMENTO LTDA.','MERCADO PAGO IP LTDA.',NULL,'DRCT','RSFN',1,0,0,0,1,1,'Destinatário',NULL,NULL,'2019-06-24','2020-11-03 06:30:00','2021-05-05T09:11:12.7114708-03:00','2024-05-15T16:49:45.7475881+00:00'); @@ -175,7 +175,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('332','13140088','13.140.088/0001-99','ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO','ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO',NULL,'DRCT','RSFN',1,1,0,0,NULL,NULL,'Banco folha e Destinatário',NULL,NULL,'2019-08-16','2020-11-03 06:30:00','2021-05-05T09:11:12.7114807-03:00','2022-12-13T12:06:52.2983548+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('334','15124464','15.124.464/0001-87','BANCO BESA S.A.','BANCO BESA S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-02-22',NULL,'2023-03-03T14:56:55.3112604+00:00','2023-03-03T14:56:55.3112605+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('335','27098060','27.098.060/0001-45','Banco Digio S.A.','BANCO DIGIO','Banco Múltiplo','DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,'Destinatário','Consignado,Outros Créditos','https://www.digio.com.br','2019-11-25','2020-11-03 06:30:00','2021-05-05T09:11:12.7114964-03:00','2023-10-21T12:05:56.1792295+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('336','31872495','31.872.495/0001-72','Banco C6 S.A.','BCO C6 S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Destinatário','Capital de Giro,Cheque Especial,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.c6bank.com','2019-01-31','2020-11-03 06:30:00','2021-05-05T09:11:12.7115026-03:00','2024-08-09T12:07:01.1518628+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('336','31872495','31.872.495/0001-72','Banco C6 S.A.','BCO C6 S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Banco Folha e Destinatário','Capital de Giro,Cheque Especial,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.c6bank.com','2019-01-31','2020-11-03 06:30:00','2021-05-05T09:11:12.7115026-03:00','2024-11-20T12:08:13.9098123+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('340','09554480','09.554.480/0001-07','SUPERDIGITAL INSTITUIÇÃO DE PAGAMENTO S.A.','SUPERDIGITAL I.P. S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2019-09-25','2020-11-03 06:30:00','2021-05-05T09:11:12.7114697-03:00','2022-07-07T12:06:14.8084022+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('341','60701190','60.701.190/0001-04','ITAÚ UNIBANCO S.A.','ITAÚ UNIBANCO S.A.','Banco Múltiplo','DRCT','RSFN',1,1,1,0,1,1,'Banco folha e Destinatário','Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.itau.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115257-03:00','2024-05-15T16:49:45.7308751+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('342','32997490','32.997.490/0001-39','Creditas Sociedade de Crédito Direto S.A.','CREDITAS SCD',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2019-07-26','2020-11-03 06:30:00','2021-05-05T09:11:12.7115047-03:00','2021-05-05T09:11:12.7115049-03:00'); @@ -203,7 +203,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('376','33172537','33.172.537/0001-98','BANCO J.P. MORGAN S.A.','BCO J.P. MORGAN S.A.',NULL,'DRCT','RSFN',1,1,0,0,1,1,NULL,'Pessoal','https://www.jpmorgan.com','2002-04-22','2022-10-01 10:00:00','2021-05-05T09:11:12.7115066-03:00','2024-05-15T16:49:45.7311056+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('377','17826860','17.826.860/0001-81','BMS SOCIEDADE DE CRÉDITO DIRETO S.A.','BMS SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2020-10-01','2024-01-11 11:00:00','2021-05-05T09:11:12.7114904-03:00','2024-01-09T12:06:14.2973546+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('378','01852137','01.852.137/0001-37','BANCO BRASILEIRO DE CRÉDITO SOCIEDADE ANÔNIMA','BCO BRASILEIRO DE CRÉDITO S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Capita de Giro PJ,Crédito Pessoal,Financiamento de Veículos,Outros,Troca de Modalidade',NULL,'2020-09-11','2024-03-18 06:00:00','2021-05-05T09:11:12.7114454-03:00','2024-08-31T12:29:47.9802220+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('379','01658426','01.658.426/0001-08','COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA.','CECM COOPERFORTE',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos',NULL,'2020-09-01',NULL,'2021-05-05T09:11:12.7114443-03:00','2023-10-21T12:05:56.8456698+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('379','01658426','01.658.426/0001-08','COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA.','CECM COOPERFORTE',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos',NULL,'2020-09-01','2024-11-25 09:00:00','2021-05-05T09:11:12.7114443-03:00','2024-11-20T12:08:12.5504802+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('380','22896431','22.896.431/0001-10','PICPAY INSTITUIçãO DE PAGAMENTO S.A.','PICPAY','Banco Múltiplo','DRCT','RSFN',1,0,0,0,1,1,'Destinatário',NULL,'https://www.picpay.com.br','2020-10-15','2020-11-03 06:30:00','2021-05-05T09:11:12.7114941-03:00','2024-05-15T16:49:45.7492256+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('381','60814191','60.814.191/0001-57','BANCO MERCEDES-BENZ DO BRASIL S.A.','BCO MERCEDES-BENZ S.A.','Banco Múltiplo',NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Pessoal,Veículos','https://www.bancomercedes-benz.com.br','2020-05-25',NULL,'2021-05-05T09:11:12.7115265-03:00','2023-10-21T12:05:56.1824214+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('382','04307598','04.307.598/0001-17','FIDÚCIA SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E À EMPRESA DE PEQUENO PORTE LIMITADA.','FIDUCIA SCMEPP LTDA',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2020-07-31','2021-12-15 10:00:00','2021-05-05T09:11:12.7114541-03:00','2023-09-25T12:28:23.0763971+00:00'); @@ -258,7 +258,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('444','40654622','40.654.622/0001-58','TRINUS SOCIEDADE DE CRÉDITO DIRETO S.A.','TRINUS SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-09-09','2022-11-07 17:00:00','2021-09-13T19:08:16.9817382-03:00','2022-10-19T12:08:46.7241587+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('445','35551187','35.551.187/0001-04','PLANTAE S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO','PLANTAE CFI',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-06-23',NULL,'2021-06-22T10:03:37.2758379-03:00','2021-06-22T10:03:37.2758811-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('447','12392983','12.392.983/0001-38','MIRAE ASSET (BRASIL) CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS LTDA.','MIRAE ASSET (BRASIL) CCTVM LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-09-27',NULL,'2021-09-28T05:25:19.3475750-03:00','2023-10-06T12:06:37.6641955+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('448','39669186','39.669.186/0001-01','HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.','HEMERA DTVM LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-08-17',NULL,'2021-08-24T13:06:55.8926622-03:00','2021-08-24T13:06:55.8926625-03:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('448','39669186','39.669.186/0001-01','HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.','HEMERA DTVM LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-08-17','2024-11-11 09:00:00','2021-08-24T13:06:55.8926622-03:00','2024-11-20T12:08:13.0684787+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('449','37555231','37.555.231/0001-71','DM SOCIEDADE DE CRÉDITO DIRETO S.A.','DM',NULL,NULL,'RSFN',1,0,0,0,1,1,NULL,NULL,NULL,'2021-10-22',NULL,'2021-10-23T20:55:03.4293187-03:00','2024-05-15T16:49:45.7444605+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('450','13203354','13.203.354/0001-85','FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A.','FITBANK IP',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,NULL,NULL,'2021-06-30','2022-03-08 10:30:00','2021-07-06T07:20:49.2254617-03:00','2024-05-15T16:49:45.7454123+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('451','40475846','40.475.846/0001-00','J17 - SOCIEDADE DE CRÉDITO DIRETO S/A','J17 - SCD S/A',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2022-01-18','2023-11-24 10:00:00','2022-02-01T08:17:39.0832206+00:00','2023-11-23T12:06:11.9151500+00:00'); @@ -315,7 +315,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('527','44478623','44.478.623/0001-40','ATICCA - SOCIEDADE DE CRÉDITO DIRETO S.A.','ATICCA SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-02-06',NULL,'2023-03-03T14:56:55.3112612+00:00','2023-03-03T14:56:55.3112613+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('528','34829992','34.829.992/0001-86','REAG TRUST DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.','REAG TRUST DTVM',NULL,'DRCT','RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2023-03-06','2024-04-01 10:00:00','2023-03-03T14:56:55.3112606+00:00','2024-09-25T12:08:06.7384843+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('529','17079937','17.079.937/0001-05','PINBANK BRASIL INSTITUIÇÃO DE PAGAMENTO S.A.','PINBANK IP',NULL,'DRCT','RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2022-11-16','2023-06-07 09:15:00','2022-11-12T12:06:34.2025683+00:00','2024-05-15T16:49:45.7494567+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('530','47873449','47.873.449/0001-28','SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A.','SER FINANCE SCD S.A.',NULL,NULL,'RSFN',1,0,0,0,1,1,NULL,'Capita de Giro PJ,Crédito Consignado,Crédito Pessoal,Troca de Modalidade',NULL,'2023-03-14',NULL,'2023-03-09T12:07:29.7846292+00:00','2024-05-15T16:49:45.7504877+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('530','47873449','47.873.449/0001-28','SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A.','SER FINANCE SCD S.A.',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,'Capita de Giro PJ,Crédito Consignado,Crédito Pessoal,Troca de Modalidade',NULL,'2023-03-14','2024-11-13 09:00:00','2023-03-09T12:07:29.7846292+00:00','2024-11-20T12:08:13.1020585+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('531','34337707','34.337.707/0001-00','BMP SOCIEDADE DE CRÉDITO DIRETO S.A','BMP SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,1,1,NULL,'Capital de Giro,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade',NULL,'2023-05-22',NULL,'2023-09-25T12:28:25.1347544+00:00','2024-05-21T12:06:40.2011379+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('532','45745537','45.745.537/0001-19','EAGLE SOCIEDADE DE CRÉDITO DIRETO S.A.','EAGLE SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-04-03',NULL,'2023-03-29T12:07:07.8301112+00:00','2023-03-29T12:07:07.8301112+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('533','22575466','22.575.466/0001-58','SRM BANK INSTITUIÇÃO DE PAGAMENTO S/A','SRM BANK',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-07-17',NULL,'2023-09-25T12:28:25.1347537+00:00','2024-03-22T12:06:54.1991257+00:00'); @@ -352,7 +352,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('565','74014747','74.014.747/0001-35','ÁGORA CORRETORA DE TITULOS E VALORES MOBILIARIOS S.A.','ÁGORA CTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-11-20',NULL,'2023-11-14T12:06:11.7936380+00:00','2023-11-14T12:06:11.7936735+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('566','23114447','23.114.447/0001-97','FLAGSHIP INSTITUICAO DE PAGAMENTOS LTDA','FLAGSHIP IP LTDA',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-10-30','2020-11-03 06:30:00','2023-10-24T12:06:14.1207735+00:00','2023-10-24T12:06:12.8841523+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('567','33040601','33.040.601/0001-87','MERCANTIL FINANCEIRA S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO','MERCANTIL FINANCEIRA',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,'Consignado,Outros Créditos,Veículos',NULL,'2023-08-28',NULL,'2023-09-25T12:28:25.1347543+00:00','2024-06-17T12:07:15.0691344+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('568','49933388','49.933.388/0001-72','BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A.','BRCONDOS SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-12-08',NULL,'2023-12-04T12:06:24.3671440+00:00','2023-12-04T12:06:24.3671662+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('568','49933388','49.933.388/0001-72','BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A.','BRCONDOS SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-12-08','2024-11-13 11:00:00','2023-12-04T12:06:24.3671440+00:00','2024-11-20T12:08:13.1045667+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('569','12473687','12.473.687/0001-61','CONTA PRONTA INSTITUICAO DE PAGAMENTO LTDA','CONTA PRONTA IP',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-10-31',NULL,'2023-10-25T12:06:22.8368523+00:00','2023-10-25T12:06:22.8368905+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('572','51414521','51.414.521/0001-26','ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.','ALL IN CRED SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-12-22',NULL,'2023-12-18T12:06:50.1170089+00:00','2023-12-18T12:06:50.1170312+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('575','48584954','48.584.954/0001-15','DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.','DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-13',NULL,'2024-06-07T12:08:28.2767917+00:00','2024-06-07T12:08:28.2768294+00:00'); @@ -373,7 +373,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('590','40473435','40.473.435/0001-78','REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS INSTITUICAO DE PAGAMENTO S.A.','REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-04','2022-12-13 09:09:43','2024-02-28T12:06:05.3104086+00:00','2024-02-28T12:06:04.5801118+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('591','02671743','02.671.743/0001-19','BANVOX DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA','BANVOX DTVM',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-28',NULL,'2024-06-24T12:07:25.1385983+00:00','2024-06-24T12:07:25.1386177+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('592','45548763','45.548.763/0001-00','INSTITUIÇÃO DE PAGAMENTOS MAPS LTDA.','MAPS IP LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-03','2024-10-07 11:00:00','2024-05-28T12:06:53.5582230+00:00','2024-10-02T12:08:04.4963575+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('593','27084098','27.084.098/0001-69','TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A','TRANSFEERA IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-05-15','2021-05-04 10:27:26','2024-05-09T12:06:38.0035796+00:00','2024-05-09T12:06:37.6901159+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('593','27084098','27.084.098/0001-69','TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A','TRANSFEERA IP S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-05-15','2024-11-04 09:10:00','2024-05-09T12:06:38.0035796+00:00','2024-11-20T12:08:12.9891048+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('594','48703388','48.703.388/0001-13','ASA SOCIEDADE DE CRÉDITO DIRETO S.A.','ASA SOCIEDADE DE CRÉDITO DIRETO S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2024-03-11','2024-07-05 09:00:00','2024-03-05T12:06:35.1241273+00:00','2024-09-19T12:07:45.0932620+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('595','19468242','19.468.242/0001-32','ZOOP TECNOLOGIA & INSTITUICAO DE PAGAMENTO S.A.','ZOOP MEIOS DE PAGAMENTO',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-21','2020-11-03 06:30:00','2024-03-15T12:06:05.5274606+00:00','2024-03-15T12:06:05.1580392+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('597','34747388','34.747.388/0001-00','ISSUER INSTITUICAO DE PAGAMENTO LTDA.','ISSUER IP LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-08','2024-09-05 10:10:00','2024-03-04T12:10:35.0004133+00:00','2024-09-06T12:31:46.1754236+00:00'); @@ -384,11 +384,11 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('611','61820817','61.820.817/0001-09','Banco Paulista S.A.','BCO PAULISTA S.A.','Banco Múltiplo',NULL,'RSFN',1,1,0,0,1,0,NULL,'Consignado,Imobiliário,Troca de Modalidade','https://www.bancopaulista.com.br','2002-04-22',NULL,'2021-05-05T09:11:12.7115321-03:00','2024-05-15T16:49:45.7335337+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('612','31880826','31.880.826/0001-16','Banco Guanabara S.A.','BCO GUANABARA S.A.','Banco Múltiplo','DRCT','RSFN',0,1,0,0,NULL,NULL,NULL,NULL,'https://www.bancoguanabara.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115029-03:00','2022-06-23T13:48:15.3478476+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('613','60850229','60.850.229/0001-47','Omni Banco S.A.','OMNI BANCO S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,0,NULL,'Outros Créditos,Pessoal,Veículos',NULL,'2002-04-22','2021-05-27 08:00:00','2021-05-05T09:11:12.7115268-03:00','2024-05-15T16:49:45.7485284+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('614','52440987','52.440.987/0001-69','NITRO SOCIEDADE DE CRÉDITO DIRETO S.A.','NITRO SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-14',NULL,'2024-06-10T12:07:20.4287940+00:00','2024-06-10T12:07:20.4288223+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('614','52440987','52.440.987/0001-69','NITRO SOCIEDADE DE CRÉDITO DIRETO S.A.','NITRO SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-14','2024-11-05 09:00:00','2024-06-10T12:07:20.4287940+00:00','2024-11-20T12:08:13.1074196+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('615','37470405','37.470.405/0001-01','SMART SOLUTIONS GROUP INSTITUICAO DE PAGAMENTO LTDA','SMART SOLUTIONS GROUP IP LTDA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-04',NULL,'2024-09-30T12:08:41.4084970+00:00','2024-09-30T12:08:41.4085273+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('619','49931906','49.931.906/0001-19','TRIO INSTITUICAO DE PAGAMENTO LTDA.','TRIO IP LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-08-01',NULL,'2024-07-26T12:29:30.1748074+00:00','2024-07-26T12:29:30.1748268+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('620','51342763','51.342.763/0001-51','REVOLUT SOCIEDADE DE CRÉDITO DIRETO S.A.','REVOLUT SCD S.A.',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-05-15',NULL,'2024-05-09T12:06:38.0036073+00:00','2024-05-09T12:06:38.0036074+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('623','59285411','59.285.411/0001-13','Banco Pan S.A.','BANCO PAN','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Destinatário','Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos','https://www.bancopan.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115240-03:00','2024-05-15T16:49:45.7333032+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('623','59285411','59.285.411/0001-13','Banco Pan S.A.','BANCO PAN','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Banco Folha e Destinatário','Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos','https://www.bancopan.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115240-03:00','2024-11-20T12:08:13.9104425+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('626','61348538','61.348.538/0001-86','BANCO C6 CONSIGNADO S.A.','BCO C6 CONSIG',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Consignado,Veículos',NULL,'2002-04-22',NULL,'2021-05-05T09:11:12.7115298-03:00','2023-10-21T12:05:56.1759027+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('630','58497702','58.497.702/0001-02','BANCO LETSBANK S.A.','BCO LETSBANK S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,NULL,NULL,NULL,'2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115221-03:00','2024-05-15T16:49:45.7316055+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('632','52586293','52.586.293/0001-34','Z-ON SOCIEDADE DE CRÉDITO DIRETO S.A.','Z-ON SCD S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-03','2024-10-03 07:07:47','2024-09-27T12:08:07.9907432+00:00','2024-10-04T12:08:01.0865649+00:00'); @@ -407,7 +407,10 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('659','35210410','35.210.410/0001-41','ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA','ONEKEY PAYMENTS IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30','2022-09-12 11:04:30','2024-09-24T12:07:36.7070372+00:00','2024-09-24T12:07:35.7979065+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('660','34471744','34.471.744/0001-06','PAGME INSTITUIÇÃO DE PAGAMENTO LTDA.','PAGME IP LTDA',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-22','2023-09-19 15:07:18','2024-10-16T12:07:56.4868924+00:00','2024-10-16T12:07:55.6307764+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('661','55428859','55.428.859/0001-98','FREEX CORRETORA DE CAMBIO S.A.','FREEX CC S.A.',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-11',NULL,'2024-09-05T12:33:05.3563736+00:00','2024-09-05T12:33:05.3564037+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('662','32708748','32.708.748/0001-30','WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.','WE PAY OUT IP LTDA.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2024-07-03 15:28:02','2024-11-20T12:08:13.9188247+00:00','2024-11-20T12:08:13.0175833+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('664','11414839','11.414.839/0001-92','EAGLE INSTITUICAO DE PAGAMENTO LTDA.','EAGLE IP LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30',NULL,'2024-09-24T12:07:36.7070087+00:00','2024-09-24T12:07:36.7070368+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('665','20018183','20.018.183/0001-80','STARK BANK S.A. - INSTITUICAO DE PAGAMENTO','STARK BANK S.A. - IP',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2021-12-21 02:14:54','2024-11-20T12:08:13.9187948+00:00','2024-11-20T12:08:12.9272681+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('671','26264220','26.264.220/0001-16','ZERO INSTITUIÇÃO DE PAGAMENTO S.A.','ZERO',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-11','2023-11-17 12:11:31','2024-11-20T12:08:13.9188245+00:00','2024-11-20T12:08:12.9794672+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('707','62232889','62.232.889/0001-90','Banco Daycoval S.A.','BCO DAYCOVAL S.A','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,NULL,'Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.daycoval.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115338-03:00','2024-05-15T16:49:45.7268243+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('712','78632767','78.632.767/0001-20','OURIBANK S.A. BANCO MÚLTIPLO','OURIBANK S.A.','Banco Múltiplo','DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.ourinvest.com.br','2014-01-28','2020-11-03 06:30:00','2021-05-05T09:11:12.7115456-03:00','2024-06-25T12:06:53.3082056+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('719','33884941','33.884.941/0001-94','BANCO MASTER MÚLTIPLO S.A.','BANCO MASTER MÚLTIPLO',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-02',NULL,'2024-08-29T12:32:25.2409945+00:00','2024-08-29T12:32:25.2410239+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 362c8ed7..ee422dd2 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -196,8 +196,8 @@ 015 02819125 02.819.125/0001-73 - UBS Brasil Corretora de Câmbio, Títulos e Valores Mobiliários S.A. - UBS BRASIL CCTVM S.A. + UBS BB CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS S.A. + UBS BB CCTVM S.A. RSFN @@ -208,7 +208,7 @@ https://www.ubs.com/br/pt.html 2011-03-15 2021-05-05T09:11:12.7114483-03:00 - 2021-05-05T09:11:12.7114485-03:00 + 2024-11-20T12:08:11.780165Z 016 @@ -1665,8 +1665,8 @@ 129 18520834 18.520.834/0001-93 - UBS Brasil Banco de Investimento S.A. - UBS BRASIL BI S.A. + UBS BB BANCO DE INVESTIMENTO S.A. + UBS BB BI S.A. RSFN @@ -1677,7 +1677,7 @@ https://www.ubs.com 2014-03-12 2021-05-05T09:11:12.7114915-03:00 - 2021-05-05T09:11:12.7114917-03:00 + 2024-11-20T12:08:11.7856061Z 130 @@ -1790,8 +1790,8 @@ 136 00315557 00.315.557/0001-11 - CONFEDERAÇÃO NACIONAL DAS COOPERATIVAS CENTRAIS UNICRED LTDA. - UNICRED DO BRASIL. - CONF NAC COOP CENTRAIS UNICRED + COOPERATIVA CENTRAL DE CRÉDITO UNICRED DO BRASIL - UNICRED DO BRASIL + UNICRED DO BRASIL RSFN DRCT true @@ -1815,7 +1815,7 @@ 2014-07-28 2020-11-03 06:30:00 2021-05-05T09:11:12.7112437-03:00 - 2024-05-15T16:49:45.74141Z + 2024-11-20T12:08:11.7778138Z 138 @@ -2866,6 +2866,7 @@ IB Corretora de Câmbio, Títulos e Valores Mobiliários S.A. IB CCTVM S.A. RSFN + DRCT false @@ -2874,8 +2875,9 @@ 2018-02-26 + 2024-11-18 10:00:00 2021-05-05T09:11:12.7114984-03:00 - 2021-05-05T09:11:12.7114985-03:00 + 2024-11-20T12:08:12.9923927Z 272 @@ -2899,8 +2901,8 @@ 273 08253539 08.253.539/0001-64 - Cooperativa de Crédito Rural de São Miguel do Oeste - Sulcredi/São Miguel - CCR DE SÃO MIGUEL DO OESTE + COOPERATIVA DE CREDITO SULCREDI AMPLEA + COOP SULCREDI AMPLEA RSFN DRCT @@ -2913,7 +2915,7 @@ 2018-04-24 2020-11-03 06:30:00 2021-05-05T09:11:12.7114649-03:00 - 2021-05-05T09:11:12.7114651-03:00 + 2024-11-20T12:08:11.7822814Z 274 @@ -3523,10 +3525,16 @@ false true true + + Consignado + Imobiliário + Pessoal + Veículos + https://www.br.ccb.com 2002-04-22 2021-05-05T09:11:12.7114616-03:00 - 2024-10-10T12:08:00.7521769Z + 2024-11-20T12:08:13.2876978Z 321 @@ -3826,7 +3834,7 @@ false true true - Destinatário + Banco Folha e Destinatário Capital de Giro Cheque Especial @@ -3840,7 +3848,7 @@ 2019-01-31 2020-11-03 06:30:00 2021-05-05T09:11:12.7115026-03:00 - 2024-08-09T12:07:01.1518628Z + 2024-11-20T12:08:13.9098123Z 340 @@ -4443,6 +4451,7 @@ COOPERFORTE - COOPERATIVA DE ECONOMIA E CRÉDITO MÚTUO DE FUNCIONÁRIOS DE INSTITUIÇÕES FINANCEIRAS PÚBLICAS FEDERAIS LTDA. CECM COOPERFORTE RSFN + DRCT false @@ -4459,8 +4468,9 @@ 2020-09-01 + 2024-11-25 09:00:00 2021-05-05T09:11:12.7114443-03:00 - 2023-10-21T12:05:56.8456698Z + 2024-11-20T12:08:12.5504802Z 380 @@ -5599,6 +5609,7 @@ HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. HEMERA DTVM LTDA. RSFN + DRCT false @@ -5607,8 +5618,9 @@ 2021-08-17 + 2024-11-11 09:00:00 2021-08-24T13:06:55.8926622-03:00 - 2021-08-24T13:06:55.8926625-03:00 + 2024-11-20T12:08:13.0684787Z 449 @@ -6708,6 +6720,7 @@ SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A. SER FINANCE SCD S.A. RSFN + DRCT true false false @@ -6722,8 +6735,9 @@ 2023-03-14 + 2024-11-13 09:00:00 2023-03-09T12:07:29.7846292Z - 2024-05-15T16:49:45.7504877Z + 2024-11-20T12:08:13.1020585Z 531 @@ -7416,6 +7430,7 @@ BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A. BRCONDOS SCD S.A. RSFN + DRCT false @@ -7424,8 +7439,9 @@ 2023-12-08 + 2024-11-13 11:00:00 2023-12-04T12:06:24.367144Z - 2023-12-04T12:06:24.3671662Z + 2024-11-20T12:08:13.1045667Z 569 @@ -7802,7 +7818,7 @@ TRANSFEERA INSTITUIÇÃO DE PAGAMENTO S.A TRANSFEERA IP S.A. RSFN - IDRT + DRCT false @@ -7811,9 +7827,9 @@ 2024-05-15 - 2021-05-04 10:27:26 + 2024-11-04 09:10:00 2024-05-09T12:06:38.0035796Z - 2024-05-09T12:06:37.6901159Z + 2024-11-20T12:08:12.9891048Z 594 @@ -8044,6 +8060,7 @@ NITRO SOCIEDADE DE CRÉDITO DIRETO S.A. NITRO SCD S.A. RSFN + DRCT false @@ -8052,8 +8069,9 @@ 2024-06-14 + 2024-11-05 09:00:00 2024-06-10T12:07:20.428794Z - 2024-06-10T12:07:20.4288223Z + 2024-11-20T12:08:13.1074196Z 615 @@ -8124,7 +8142,7 @@ false true true - Destinatário + Banco Folha e Destinatário Cheque Especial Consignado @@ -8137,7 +8155,7 @@ 2002-04-22 2020-11-03 06:30:00 2021-05-05T09:11:12.711524-03:00 - 2024-05-15T16:49:45.7333032Z + 2024-11-20T12:08:13.9104425Z 626 @@ -8540,6 +8558,26 @@ 2024-09-05T12:33:05.3563736Z 2024-09-05T12:33:05.3564037Z + + 662 + 32708748 + 32.708.748/0001-30 + WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA. + WE PAY OUT IP LTDA. + RSFN + IDRT + + + false + false + + + + 2024-11-25 + 2024-07-03 15:28:02 + 2024-11-20T12:08:13.9188247Z + 2024-11-20T12:08:13.0175833Z + 664 11414839 @@ -8558,6 +8596,46 @@ 2024-09-24T12:07:36.7070087Z 2024-09-24T12:07:36.7070368Z + + 665 + 20018183 + 20.018.183/0001-80 + STARK BANK S.A. - INSTITUICAO DE PAGAMENTO + STARK BANK S.A. - IP + RSFN + IDRT + + + false + false + + + + 2024-11-25 + 2021-12-21 02:14:54 + 2024-11-20T12:08:13.9187948Z + 2024-11-20T12:08:12.9272681Z + + + 671 + 26264220 + 26.264.220/0001-16 + ZERO INSTITUIÇÃO DE PAGAMENTO S.A. + ZERO + RSFN + IDRT + + + false + false + + + + 2024-11-11 + 2023-11-17 12:11:31 + 2024-11-20T12:08:13.9188245Z + 2024-11-20T12:08:12.9794672Z + 707 62232889 From 960fb958fd5d5efc4e0b5a550947a5f5979bd719 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 21 Nov 2024 10:17:31 +0000 Subject: [PATCH 11/48] Update link-checker.yml --- .github/workflows/link-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index e794c9be..17669585 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -56,7 +56,7 @@ jobs: run: sudo wg-quick down ./wg0.conf - name: Create issue - if: github.event_name != 'pull_request' && env.lychee_exit_code != 0 + if: always() && github.event_name != 'pull_request' && env.lychee_exit_code != 0 uses: peter-evans/create-issue-from-file@v5 with: title: 🔗✅ Link checker report @@ -70,7 +70,7 @@ jobs: - name: Update PR with comment uses: mshick/add-pr-comment@v2 - if: github.event_name == 'pull_request' && env.lychee_exit_code != 0 + if: always() && github.event_name == 'pull_request' && env.lychee_exit_code != 0 with: refresh-message-position: true message-id: 'link-checker-result' From f7b1f2f99df648163cde526697723fe0c56176fd Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 21 Nov 2024 10:18:20 +0000 Subject: [PATCH 12/48] Update link-checker.yml --- .github/workflows/link-checker.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index 17669585..79dc63e5 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -45,8 +45,6 @@ jobs: - name: Run lychee uses: lycheeverse/lychee-action@v2.1.0 id: lychee - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: args: "--base . --cache --max-cache-age 1d ." From 2070310e5b69b11d1e2560ecfc0a1c8d94073bea Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 21 Nov 2024 10:22:16 +0000 Subject: [PATCH 13/48] Update link-checker.yml --- .github/workflows/link-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index 79dc63e5..4875d467 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -54,7 +54,7 @@ jobs: run: sudo wg-quick down ./wg0.conf - name: Create issue - if: always() && github.event_name != 'pull_request' && env.lychee_exit_code != 0 + if: always() && github.event_name != 'pull_request' && steps.lychee.outputs.exit_code != 0 uses: peter-evans/create-issue-from-file@v5 with: title: 🔗✅ Link checker report @@ -68,7 +68,7 @@ jobs: - name: Update PR with comment uses: mshick/add-pr-comment@v2 - if: always() && github.event_name == 'pull_request' && env.lychee_exit_code != 0 + if: always() && github.event_name == 'pull_request' && steps.lychee.outputs.exit_code != 0 with: refresh-message-position: true message-id: 'link-checker-result' From c3fbd9a6d680af54b1be14f16044c193a9ac7433 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 22 Nov 2024 11:00:36 +0000 Subject: [PATCH 14/48] Fix outdated links (#594) * Update .lycheeignore * Update .lycheeignore * Update bancos.xml * Update bancos.sql * Update bancos.md * Update bancos.json * Update bancos.csv --- .lycheeignore | 5 ++++- data/bancos.csv | 2 +- data/bancos.json | 4 ++-- data/bancos.md | 2 +- data/bancos.sql | 2 +- data/bancos.xml | 4 ++-- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.lycheeignore b/.lycheeignore index 299fc17d..a047270b 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -1,3 +1,4 @@ +bancoamazonia\.com\.br bancocedula\.com\.br bancoguanabara\.com\.br bancointer\.com\.br @@ -5,6 +6,7 @@ banconordeste\.gov\.br bancopan\.com\.br bancosemear\.com\.br banese\.com\.br +bb\.com\.br bcgbrasil\.com\.br bmfbovespa\.com\.br brp\.com\.br @@ -13,7 +15,7 @@ caixa\.gov\.br daycoval\.com\.br file:\/\/ finaxis\.com\.br -github\.com\/.+\[bot\] +github\.com\/.+ github\.com\/ghost haitongib\.com\.br hipercard\.com\.br @@ -23,6 +25,7 @@ itau\.com\.br lecca\.com\.br paranabanco\.com\.br rabobank\.com\.br +sisprimedobrasil\.com\.br travelexbank\.com\.br unicred\.com\.br xpi\.com\.br diff --git a/data/bancos.csv b/data/bancos.csv index 3483a48e..61be843c 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -61,7 +61,7 @@ 108,01800019,01.800.019/0001-85,PORTOCRED S.A. - CREDITO FINANCIAMENTO E INVESTIMENTO,PORTOCRED S.A. - CFI,RSFN,,,,,Não,Não,,,,Consignado; Pessoal e Veículos,https://www.portocred.com.br/,2011-11-03,,2021-05-05T09:11:12.7114450-03:00,2022-06-23T13:51:35.2273369+00:00 111,36113876,36.113.876/0001-91,OLIVEIRA TRUST DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIARIOS S.A.,OLIVEIRA TRUST DTVM S.A.,RSFN,,,,,Não,Não,,,,,https://www.oliveiratrust.com.br/,2011-03-24,,2021-05-05T09:11:12.7115125-03:00,2021-05-05T09:11:12.7115126-03:00 113,61723847,61.723.847/0001-99,NEON CORRETORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.,NEON CTVM S.A.,RSFN,,,,,Não,Não,,,,,https://neon.com.br/,2011-11-28,,2021-05-05T09:11:12.7115310-03:00,2022-03-16T07:58:39.2787909+00:00 -114,05790149,05.790.149/0001-35,Central Cooperativa de Crédito no Estado do Espírito Santo - CECOOP,CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO,RSFN,,,,,Não,Não,,,,Cheque Especial; Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,https://cecoop.com.br/central/,2011-10-27,,2021-05-05T09:11:12.7114598-03:00,2023-10-21T12:05:56.1926140+00:00 +114,05790149,05.790.149/0001-35,Central Cooperativa de Crédito no Estado do Espírito Santo - CECOOP,CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO,RSFN,,,,,Não,Não,,,,Cheque Especial; Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,,2011-10-27,,2021-05-05T09:11:12.7114598-03:00,2023-10-21T12:05:56.1926140+00:00 117,92856905,92.856.905/0001-86,ADVANCED CORRETORA DE CÂMBIO LTDA,ADVANCED CC LTDA,Internet,,,,,Não,Não,,,,,https://advancedcorretora.com.br/,2011-10-03,,2021-05-05T09:11:12.7115481-03:00,2021-05-05T09:11:12.7115483-03:00 119,13720915,13.720.915/0001-13,Banco Western Union do Brasil S.A.,BCO WESTERN UNION,RSFN,Banco Comercial,DRCT,Não,Sim,Não,Não,,,,,https://www.bancowesternunion.com.br,2011-10-10,2023-03-01 10:00:00,2021-05-05T09:11:12.7114833-03:00,2023-03-03T14:56:54.2356798+00:00 120,33603457,33.603.457/0001-40,BANCO RODOBENS S.A.,BCO RODOBENS S.A.,RSFN,Banco Múltiplo,,Sim,Sim,Não,Não,Sim,Não,,Consignado; Imobiliário; Pessoal; Troca de Modalidade; Veículos,https://www.rodobens.com.br,2012-02-06,,2021-05-05T09:11:12.7115081-03:00,2024-05-15T16:49:45.7344650+00:00 diff --git a/data/bancos.json b/data/bancos.json index a12d49a1..f2626605 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -1619,7 +1619,7 @@ "Troca de Modalidade", "Veículos" ], - "Url": "https://cecoop.com.br/central/", + "Url": null, "DateOperationStarted": "2011-10-27", "DatePixStarted": null, "DateRegistered": "2021-05-05T09:11:12.7114598-03:00", @@ -10531,4 +10531,4 @@ "DateRegistered": "2021-05-05T09:11:12.7114464-03:00", "DateUpdated": "2024-05-15T16:49:45.7313357+00:00" } -] \ No newline at end of file +] diff --git a/data/bancos.md b/data/bancos.md index 02e3752c..5fb92398 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -64,7 +64,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 108 | 01800019 | 01.800.019/0001-85 | PORTOCRED S.A. - CREDITO, FINANCIAMENTO E INVESTIMENTO | PORTOCRED S.A. - CFI | RSFN | - | - | - | - | Não | Não | - | - | - | Consignado,Pessoal e Veículos | https://www.portocred.com.br/ | 2011-11-03 | - | 2021-05-05T09:11:12.7114450-03:00 | 2022-06-23T13:51:35.2273369+00:00 111 | 36113876 | 36.113.876/0001-91 | OLIVEIRA TRUST DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIARIOS S.A. | OLIVEIRA TRUST DTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.oliveiratrust.com.br/ | 2011-03-24 | - | 2021-05-05T09:11:12.7115125-03:00 | 2021-05-05T09:11:12.7115126-03:00 113 | 61723847 | 61.723.847/0001-99 | NEON CORRETORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. | NEON CTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://neon.com.br/ | 2011-11-28 | - | 2021-05-05T09:11:12.7115310-03:00 | 2022-03-16T07:58:39.2787909+00:00 -114 | 05790149 | 05.790.149/0001-35 | Central Cooperativa de Crédito no Estado do Espírito Santo - CECOOP | CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO | RSFN | - | - | - | - | Não | Não | - | - | - | Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | https://cecoop.com.br/central/ | 2011-10-27 | - | 2021-05-05T09:11:12.7114598-03:00 | 2023-10-21T12:05:56.1926140+00:00 +114 | 05790149 | 05.790.149/0001-35 | Central Cooperativa de Crédito no Estado do Espírito Santo - CECOOP | CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO | RSFN | - | - | - | - | Não | Não | - | - | - | Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | - | 2011-10-27 | - | 2021-05-05T09:11:12.7114598-03:00 | 2023-10-21T12:05:56.1926140+00:00 117 | 92856905 | 92.856.905/0001-86 | ADVANCED CORRETORA DE CÂMBIO LTDA | ADVANCED CC LTDA | Internet | - | - | - | - | Não | Não | - | - | - | - | https://advancedcorretora.com.br/ | 2011-10-03 | - | 2021-05-05T09:11:12.7115481-03:00 | 2021-05-05T09:11:12.7115483-03:00 119 | 13720915 | 13.720.915/0001-13 | Banco Western Union do Brasil S.A. | BCO WESTERN UNION | RSFN | Banco Comercial | DRCT | Não | Sim | Não | Não | - | - | - | - | https://www.bancowesternunion.com.br | 2011-10-10 | 2023-03-01 10:00:00 | 2021-05-05T09:11:12.7114833-03:00 | 2023-03-03T14:56:54.2356798+00:00 120 | 33603457 | 33.603.457/0001-40 | BANCO RODOBENS S.A. | BCO RODOBENS S.A. | RSFN | Banco Múltiplo | - | Sim | Sim | Não | Não | Sim | Não | - | Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos | https://www.rodobens.com.br | 2012-02-06 | - | 2021-05-05T09:11:12.7115081-03:00 | 2024-05-15T16:49:45.7344650+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index d6f1ac25..6e228e2b 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -60,7 +60,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('108','01800019','01.800.019/0001-85','PORTOCRED S.A. - CREDITO, FINANCIAMENTO E INVESTIMENTO','PORTOCRED S.A. - CFI',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Consignado,Pessoal e Veículos','https://www.portocred.com.br/','2011-11-03',NULL,'2021-05-05T09:11:12.7114450-03:00','2022-06-23T13:51:35.2273369+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('111','36113876','36.113.876/0001-91','OLIVEIRA TRUST DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIARIOS S.A.','OLIVEIRA TRUST DTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.oliveiratrust.com.br/','2011-03-24',NULL,'2021-05-05T09:11:12.7115125-03:00','2021-05-05T09:11:12.7115126-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('113','61723847','61.723.847/0001-99','NEON CORRETORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.','NEON CTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://neon.com.br/','2011-11-28',NULL,'2021-05-05T09:11:12.7115310-03:00','2022-03-16T07:58:39.2787909+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('114','05790149','05.790.149/0001-35','Central Cooperativa de Crédito no Estado do Espírito Santo - CECOOP','CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos','https://cecoop.com.br/central/','2011-10-27',NULL,'2021-05-05T09:11:12.7114598-03:00','2023-10-21T12:05:56.1926140+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('114','05790149','05.790.149/0001-35','Central Cooperativa de Crédito no Estado do Espírito Santo - CECOOP','CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,'Cheque Especial,Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos',NULL,'2011-10-27',NULL,'2021-05-05T09:11:12.7114598-03:00','2023-10-21T12:05:56.1926140+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('117','92856905','92.856.905/0001-86','ADVANCED CORRETORA DE CÂMBIO LTDA','ADVANCED CC LTDA',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://advancedcorretora.com.br/','2011-10-03',NULL,'2021-05-05T09:11:12.7115481-03:00','2021-05-05T09:11:12.7115483-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('119','13720915','13.720.915/0001-13','Banco Western Union do Brasil S.A.','BCO WESTERN UNION','Banco Comercial','DRCT','RSFN',0,1,0,0,NULL,NULL,NULL,NULL,'https://www.bancowesternunion.com.br','2011-10-10','2023-03-01 10:00:00','2021-05-05T09:11:12.7114833-03:00','2023-03-03T14:56:54.2356798+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('120','33603457','33.603.457/0001-40','BANCO RODOBENS S.A.','BCO RODOBENS S.A.','Banco Múltiplo',NULL,'RSFN',1,1,0,0,1,0,NULL,'Consignado,Imobiliário,Pessoal,Troca de Modalidade,Veículos','https://www.rodobens.com.br','2012-02-06',NULL,'2021-05-05T09:11:12.7115081-03:00','2024-05-15T16:49:45.7344650+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index ee422dd2..0429fe52 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -1446,7 +1446,7 @@ Troca de Modalidade Veículos - https://cecoop.com.br/central/ + 2011-10-27 2021-05-05T09:11:12.7114598-03:00 2023-10-21T12:05:56.192614Z @@ -9076,4 +9076,4 @@ 2021-05-05T09:11:12.7114464-03:00 2024-05-15T16:49:45.7313357Z - \ No newline at end of file + From 5b72b5585af97531e02912d401bc9041bbdf3d51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 01:09:07 +0000 Subject: [PATCH 15/48] build(deps): bump guibranco/github-infisical-secrets-check-action (#595) Bumps [guibranco/github-infisical-secrets-check-action](https://github.com/guibranco/github-infisical-secrets-check-action) from 1.1.16 to 1.1.19. - [Release notes](https://github.com/guibranco/github-infisical-secrets-check-action/releases) - [Commits](https://github.com/guibranco/github-infisical-secrets-check-action/compare/v1.1.16...v1.1.19) --- updated-dependencies: - dependency-name: guibranco/github-infisical-secrets-check-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/infisical-secrets-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/infisical-secrets-check.yml b/.github/workflows/infisical-secrets-check.yml index 4fb5786f..f2a53fc5 100644 --- a/.github/workflows/infisical-secrets-check.yml +++ b/.github/workflows/infisical-secrets-check.yml @@ -23,4 +23,4 @@ jobs: fetch-depth: 0 - name: Infisical secrets check - uses: guibranco/github-infisical-secrets-check-action@v1.1.16 + uses: guibranco/github-infisical-secrets-check-action@v1.1.19 From 91061f86532f2cafbd9a5b92159f684f7e7ad781 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Thu, 28 Nov 2024 12:37:39 +0000 Subject: [PATCH 16/48] Daily updates (bot) --- CHANGELOG.md | 7 +++++++ data/bancos.csv | 2 +- data/bancos.json | 8 ++++---- data/bancos.md | 2 +- data/bancos.sql | 2 +- data/bancos.xml | 6 ++++-- 6 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 153a9a88..0f9fe2f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ## Changelog +### 2024-11-28 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Updated 1 bank + - 589 - G5 SCD SA - 51.212.088/0001-46 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-12-09 09:00:00 + ### 2024-11-20 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Added 3 banks diff --git a/data/bancos.csv b/data/bancos.csv index 61be843c..16426eb6 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -370,7 +370,7 @@ 586,35810871,35.810.871/0001-55,Z1 INSTITUIÇÃO DE PAGAMENTO LTDA.,Z1 IP LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2024-02-21,2024-03-19 10:10:00,2024-02-15T12:06:06.9727410+00:00,2024-03-20T12:06:38.8062276+00:00 587,37678915,37.678.915/0001-60,FIDD DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.,FIDD DTVM LTDA.,RSFN,,,,,Não,Não,,,,,,2024-06-17,,2024-06-11T12:07:06.0197580+00:00,2024-06-11T12:07:06.0197778+00:00 588,20308187,20.308.187/0001-00,PROVER PROMOCAO DE VENDAS INSTITUICAO DE PAGAMENTO LTDA,PROVER PROMOCAO DE VENDAS IP LTDA.,RSFN,,,,,Não,Não,,,,,,2024-03-04,,2024-02-27T12:05:53.2736229+00:00,2024-02-27T12:05:53.2736418+00:00 -589,51212088,51.212.088/0001-46,G5 SOCIEDADE DE CRÉDITO DIRETO S.A.,G5 SCD SA,RSFN,,,,,Não,Não,,,,,,2024-06-18,,2024-06-12T12:06:51.7759654+00:00,2024-06-12T12:06:51.7759938+00:00 +589,51212088,51.212.088/0001-46,G5 SOCIEDADE DE CRÉDITO DIRETO S.A.,G5 SCD SA,RSFN,,DRCT,,,Não,Não,,,,,,2024-06-18,2024-12-09 09:00:00,2024-06-12T12:06:51.7759654+00:00,2024-11-28T12:37:25.5346752+00:00 590,40473435,40.473.435/0001-78,REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS INSTITUICAO DE PAGAMENTO S.A.,REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-03-04,2022-12-13 09:09:43,2024-02-28T12:06:05.3104086+00:00,2024-02-28T12:06:04.5801118+00:00 591,02671743,02.671.743/0001-19,BANVOX DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA,BANVOX DTVM,RSFN,,,,,Não,Não,,,,,,2024-06-28,,2024-06-24T12:07:25.1385983+00:00,2024-06-24T12:07:25.1386177+00:00 592,45548763,45.548.763/0001-00,INSTITUIÇÃO DE PAGAMENTOS MAPS LTDA.,MAPS IP LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2024-06-03,2024-10-07 11:00:00,2024-05-28T12:06:53.5582230+00:00,2024-10-02T12:08:04.4963575+00:00 diff --git a/data/bancos.json b/data/bancos.json index f2626605..6424ca7d 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -9040,7 +9040,7 @@ "ShortName": "G5 SCD SA", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -9051,9 +9051,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2024-06-18", - "DatePixStarted": null, + "DatePixStarted": "2024-12-09 09:00:00", "DateRegistered": "2024-06-12T12:06:51.7759654+00:00", - "DateUpdated": "2024-06-12T12:06:51.7759938+00:00" + "DateUpdated": "2024-11-28T12:37:25.5346752+00:00" }, { "COMPE": "590", @@ -10531,4 +10531,4 @@ "DateRegistered": "2021-05-05T09:11:12.7114464-03:00", "DateUpdated": "2024-05-15T16:49:45.7313357+00:00" } -] +] \ No newline at end of file diff --git a/data/bancos.md b/data/bancos.md index 5fb92398..09c13ba2 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -373,7 +373,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 586 | 35810871 | 35.810.871/0001-55 | Z1 INSTITUIÇÃO DE PAGAMENTO LTDA. | Z1 IP LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-02-21 | 2024-03-19 10:10:00 | 2024-02-15T12:06:06.9727410+00:00 | 2024-03-20T12:06:38.8062276+00:00 587 | 37678915 | 37.678.915/0001-60 | FIDD DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. | FIDD DTVM LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-17 | - | 2024-06-11T12:07:06.0197580+00:00 | 2024-06-11T12:07:06.0197778+00:00 588 | 20308187 | 20.308.187/0001-00 | PROVER PROMOCAO DE VENDAS INSTITUICAO DE PAGAMENTO LTDA | PROVER PROMOCAO DE VENDAS IP LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-03-04 | - | 2024-02-27T12:05:53.2736229+00:00 | 2024-02-27T12:05:53.2736418+00:00 -589 | 51212088 | 51.212.088/0001-46 | G5 SOCIEDADE DE CRÉDITO DIRETO S.A. | G5 SCD SA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-18 | - | 2024-06-12T12:06:51.7759654+00:00 | 2024-06-12T12:06:51.7759938+00:00 +589 | 51212088 | 51.212.088/0001-46 | G5 SOCIEDADE DE CRÉDITO DIRETO S.A. | G5 SCD SA | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-06-18 | 2024-12-09 09:00:00 | 2024-06-12T12:06:51.7759654+00:00 | 2024-11-28T12:37:25.5346752+00:00 590 | 40473435 | 40.473.435/0001-78 | REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS INSTITUICAO DE PAGAMENTO S.A. | REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-03-04 | 2022-12-13 09:09:43 | 2024-02-28T12:06:05.3104086+00:00 | 2024-02-28T12:06:04.5801118+00:00 591 | 02671743 | 02.671.743/0001-19 | BANVOX DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA | BANVOX DTVM | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-28 | - | 2024-06-24T12:07:25.1385983+00:00 | 2024-06-24T12:07:25.1386177+00:00 592 | 45548763 | 45.548.763/0001-00 | INSTITUIÇÃO DE PAGAMENTOS MAPS LTDA. | MAPS IP LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-06-03 | 2024-10-07 11:00:00 | 2024-05-28T12:06:53.5582230+00:00 | 2024-10-02T12:08:04.4963575+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index 6e228e2b..d061d1e0 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -369,7 +369,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('586','35810871','35.810.871/0001-55','Z1 INSTITUIÇÃO DE PAGAMENTO LTDA.','Z1 IP LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-02-21','2024-03-19 10:10:00','2024-02-15T12:06:06.9727410+00:00','2024-03-20T12:06:38.8062276+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('587','37678915','37.678.915/0001-60','FIDD DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.','FIDD DTVM LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-17',NULL,'2024-06-11T12:07:06.0197580+00:00','2024-06-11T12:07:06.0197778+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('588','20308187','20.308.187/0001-00','PROVER PROMOCAO DE VENDAS INSTITUICAO DE PAGAMENTO LTDA','PROVER PROMOCAO DE VENDAS IP LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-04',NULL,'2024-02-27T12:05:53.2736229+00:00','2024-02-27T12:05:53.2736418+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('589','51212088','51.212.088/0001-46','G5 SOCIEDADE DE CRÉDITO DIRETO S.A.','G5 SCD SA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-18',NULL,'2024-06-12T12:06:51.7759654+00:00','2024-06-12T12:06:51.7759938+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('589','51212088','51.212.088/0001-46','G5 SOCIEDADE DE CRÉDITO DIRETO S.A.','G5 SCD SA',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-18','2024-12-09 09:00:00','2024-06-12T12:06:51.7759654+00:00','2024-11-28T12:37:25.5346752+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('590','40473435','40.473.435/0001-78','REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS INSTITUICAO DE PAGAMENTO S.A.','REPASSES FINANCEIROS E SOLUCOES TECNOLOGICAS IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-04','2022-12-13 09:09:43','2024-02-28T12:06:05.3104086+00:00','2024-02-28T12:06:04.5801118+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('591','02671743','02.671.743/0001-19','BANVOX DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA','BANVOX DTVM',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-28',NULL,'2024-06-24T12:07:25.1385983+00:00','2024-06-24T12:07:25.1386177+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('592','45548763','45.548.763/0001-00','INSTITUIÇÃO DE PAGAMENTOS MAPS LTDA.','MAPS IP LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-03','2024-10-07 11:00:00','2024-05-28T12:06:53.5582230+00:00','2024-10-02T12:08:04.4963575+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 0429fe52..f98ea95b 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -7742,6 +7742,7 @@ G5 SOCIEDADE DE CRÉDITO DIRETO S.A. G5 SCD SA RSFN + DRCT false @@ -7750,8 +7751,9 @@ 2024-06-18 + 2024-12-09 09:00:00 2024-06-12T12:06:51.7759654Z - 2024-06-12T12:06:51.7759938Z + 2024-11-28T12:37:25.5346752Z 590 @@ -9076,4 +9078,4 @@ 2021-05-05T09:11:12.7114464-03:00 2024-05-15T16:49:45.7313357Z - + \ No newline at end of file From b3bfdf56bca136c1f53e131bfd86fcea30ad30b1 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Fri, 29 Nov 2024 12:37:15 +0000 Subject: [PATCH 17/48] Daily updates (bot) --- CHANGELOG.md | 7 +++++++ data/bancos.csv | 2 +- data/bancos.json | 6 +++--- data/bancos.md | 2 +- data/bancos.sql | 2 +- data/bancos.xml | 6 +++--- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f9fe2f4..5bcbf91b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ## Changelog +### 2024-11-29 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Updated 1 bank + - 410 - PLANNER SOCIEDADE DE CRÉDITO DIRETO - 05.684.234/0001-19 + - **Pcr** (PCR): Null **->** True + - **Pcrp** (PCR): Null **->** True + ### 2024-11-28 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Updated 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index 16426eb6..3506a8d7 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -231,7 +231,7 @@ 406,37715993,37.715.993/0001-98,ACCREDITO - SOCIEDADE DE CRÉDITO DIRETO S.A.,ACCREDITO SCD S.A.,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,,,,2020-11-27,2023-03-15 10:00:00,2021-05-05T09:11:12.7115144-03:00,2024-05-15T16:49:45.7196733+00:00 407,00329598,00.329.598/0001-67,SEFER INVESTIMENTOS DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA,SEFER INVESTIMENTOS DTVM LTDA,RSFN,,DRCT,,,Não,Não,,,,,,2021-02-22,2022-11-08 10:00:00,2021-05-05T09:11:12.7112580-03:00,2024-03-21T12:06:10.8550272+00:00 408,36586946,36.586.946/0001-29,BONUSPAGO SOCIEDADE DE CRÉDITO DIRETO S.A.,BONUSPAGO SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2020-10-14,2020-11-03 06:30:00,2021-05-05T09:11:12.7115128-03:00,2021-05-05T09:11:12.7115130-03:00 -410,05684234,05.684.234/0001-19,PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A.,PLANNER SOCIEDADE DE CRÉDITO DIRETO,RSFN,,DRCT,,,Não,Não,,,,,,2021-02-17,2024-01-10 11:00:00,2021-05-05T09:11:12.7114594-03:00,2024-01-09T12:06:14.1626613+00:00 +410,05684234,05.684.234/0001-19,PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A.,PLANNER SOCIEDADE DE CRÉDITO DIRETO,RSFN,,DRCT,,,Não,Não,Sim,Sim,,,,2021-02-17,2024-01-10 11:00:00,2021-05-05T09:11:12.7114594-03:00,2024-11-29T12:36:54.3496718+00:00 411,05192316,05.192.316/0001-46,Via Certa Financiadora S.A. - Crédito Financiamento e Investimentos,VIA CERTA FINANCIADORA S.A. - CFI,RSFN,,DRCT,Sim,Não,Não,Não,,,,Consignado; Pessoal,,2021-02-22,2021-06-24 10:00:00,2021-05-05T09:11:12.7114575-03:00,2023-10-21T12:05:56.9720664+00:00 412,15173776,15.173.776/0001-80,SOCIAL BANK BANCO MÚLTIPLO S/A,SOCIAL BANK S/A,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Não,Destinatário,,,2002-04-22,2022-09-01 09:00:00,2021-05-05T09:11:12.7114859-03:00,2024-05-15T16:49:45.7511805+00:00 413,01858774,01.858.774/0001-10,BANCO BV S.A.,BCO BV S.A.,RSFN,,DRCT,Sim,Sim,Não,Sim,Sim,Não,Banco folha e Destinatário,,,2021-05-21,2021-06-14 08:00:00,2021-05-21T23:01:29.4844407-03:00,2024-05-15T16:49:45.7244293+00:00 diff --git a/data/bancos.json b/data/bancos.json index 6424ca7d..250de6c7 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -5770,15 +5770,15 @@ "CreditDocument": null, "LegalCheque": false, "DetectaFlow": false, - "PCR": null, - "PCRP": null, + "PCR": true, + "PCRP": true, "SalaryPortability": null, "Products": null, "Url": null, "DateOperationStarted": "2021-02-17", "DatePixStarted": "2024-01-10 11:00:00", "DateRegistered": "2021-05-05T09:11:12.7114594-03:00", - "DateUpdated": "2024-01-09T12:06:14.1626613+00:00" + "DateUpdated": "2024-11-29T12:36:54.3496718+00:00" }, { "COMPE": "411", diff --git a/data/bancos.md b/data/bancos.md index 09c13ba2..4bf48de6 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -234,7 +234,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 406 | 37715993 | 37.715.993/0001-98 | ACCREDITO - SOCIEDADE DE CRÉDITO DIRETO S.A. | ACCREDITO SCD S.A. | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | - | - | 2020-11-27 | 2023-03-15 10:00:00 | 2021-05-05T09:11:12.7115144-03:00 | 2024-05-15T16:49:45.7196733+00:00 407 | 00329598 | 00.329.598/0001-67 | SEFER INVESTIMENTOS DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA | SEFER INVESTIMENTOS DTVM LTDA | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2021-02-22 | 2022-11-08 10:00:00 | 2021-05-05T09:11:12.7112580-03:00 | 2024-03-21T12:06:10.8550272+00:00 408 | 36586946 | 36.586.946/0001-29 | BONUSPAGO SOCIEDADE DE CRÉDITO DIRETO S.A. | BONUSPAGO SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2020-10-14 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115128-03:00 | 2021-05-05T09:11:12.7115130-03:00 -410 | 05684234 | 05.684.234/0001-19 | PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A. | PLANNER SOCIEDADE DE CRÉDITO DIRETO | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2021-02-17 | 2024-01-10 11:00:00 | 2021-05-05T09:11:12.7114594-03:00 | 2024-01-09T12:06:14.1626613+00:00 +410 | 05684234 | 05.684.234/0001-19 | PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A. | PLANNER SOCIEDADE DE CRÉDITO DIRETO | RSFN | - | DRCT | - | - | Não | Não | Sim | Sim | - | - | - | 2021-02-17 | 2024-01-10 11:00:00 | 2021-05-05T09:11:12.7114594-03:00 | 2024-11-29T12:36:54.3496718+00:00 411 | 05192316 | 05.192.316/0001-46 | Via Certa Financiadora S.A. - Crédito, Financiamento e Investimentos | VIA CERTA FINANCIADORA S.A. - CFI | RSFN | - | DRCT | Sim | Não | Não | Não | - | - | - | Consignado,Pessoal | - | 2021-02-22 | 2021-06-24 10:00:00 | 2021-05-05T09:11:12.7114575-03:00 | 2023-10-21T12:05:56.9720664+00:00 412 | 15173776 | 15.173.776/0001-80 | SOCIAL BANK BANCO MÚLTIPLO S/A | SOCIAL BANK S/A | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Não | Destinatário | - | - | 2002-04-22 | 2022-09-01 09:00:00 | 2021-05-05T09:11:12.7114859-03:00 | 2024-05-15T16:49:45.7511805+00:00 413 | 01858774 | 01.858.774/0001-10 | BANCO BV S.A. | BCO BV S.A. | RSFN | - | DRCT | Sim | Sim | Não | Sim | Sim | Não | Banco folha e Destinatário | - | - | 2021-05-21 | 2021-06-14 08:00:00 | 2021-05-21T23:01:29.4844407-03:00 | 2024-05-15T16:49:45.7244293+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index d061d1e0..6e26ff69 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -230,7 +230,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('406','37715993','37.715.993/0001-98','ACCREDITO - SOCIEDADE DE CRÉDITO DIRETO S.A.','ACCREDITO SCD S.A.',NULL,'DRCT','RSFN',1,1,0,0,1,1,NULL,NULL,NULL,'2020-11-27','2023-03-15 10:00:00','2021-05-05T09:11:12.7115144-03:00','2024-05-15T16:49:45.7196733+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('407','00329598','00.329.598/0001-67','SEFER INVESTIMENTOS DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA','SEFER INVESTIMENTOS DTVM LTDA',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-02-22','2022-11-08 10:00:00','2021-05-05T09:11:12.7112580-03:00','2024-03-21T12:06:10.8550272+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('408','36586946','36.586.946/0001-29','BONUSPAGO SOCIEDADE DE CRÉDITO DIRETO S.A.','BONUSPAGO SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2020-10-14','2020-11-03 06:30:00','2021-05-05T09:11:12.7115128-03:00','2021-05-05T09:11:12.7115130-03:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('410','05684234','05.684.234/0001-19','PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A.','PLANNER SOCIEDADE DE CRÉDITO DIRETO',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-02-17','2024-01-10 11:00:00','2021-05-05T09:11:12.7114594-03:00','2024-01-09T12:06:14.1626613+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('410','05684234','05.684.234/0001-19','PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A.','PLANNER SOCIEDADE DE CRÉDITO DIRETO',NULL,'DRCT','RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2021-02-17','2024-01-10 11:00:00','2021-05-05T09:11:12.7114594-03:00','2024-11-29T12:36:54.3496718+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('411','05192316','05.192.316/0001-46','Via Certa Financiadora S.A. - Crédito, Financiamento e Investimentos','VIA CERTA FINANCIADORA S.A. - CFI',NULL,'DRCT','RSFN',1,0,0,0,NULL,NULL,NULL,'Consignado,Pessoal',NULL,'2021-02-22','2021-06-24 10:00:00','2021-05-05T09:11:12.7114575-03:00','2023-10-21T12:05:56.9720664+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('412','15173776','15.173.776/0001-80','SOCIAL BANK BANCO MÚLTIPLO S/A','SOCIAL BANK S/A','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,0,'Destinatário',NULL,NULL,'2002-04-22','2022-09-01 09:00:00','2021-05-05T09:11:12.7114859-03:00','2024-05-15T16:49:45.7511805+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('413','01858774','01.858.774/0001-10','BANCO BV S.A.','BCO BV S.A.',NULL,'DRCT','RSFN',1,1,0,1,1,0,'Banco folha e Destinatário',NULL,NULL,'2021-05-21','2021-06-14 08:00:00','2021-05-21T23:01:29.4844407-03:00','2024-05-15T16:49:45.7244293+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index f98ea95b..9292ad35 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -5035,13 +5035,13 @@ false false - - + true + true 2021-02-17 2024-01-10 11:00:00 2021-05-05T09:11:12.7114594-03:00 - 2024-01-09T12:06:14.1626613Z + 2024-11-29T12:36:54.3496718Z 411 From 0b3514231c77a21d0d2507b08cd199e215a0e839 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Tue, 3 Dec 2024 10:04:25 +0000 Subject: [PATCH 18/48] fix: upgrade bancos-brasileiros from 6.0.97 to 6.0.98 (#598) Snyk has created this PR to upgrade bancos-brasileiros from 6.0.97 to 6.0.98. See this package in npm: bancos-brasileiros See this project in Snyk: https://app.snyk.io/org/guibranco/project/337dc2ee-ac4c-4ec7-8f33-7fddb26040de?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- examples/emberjs/package-lock.json | 14 +++++++------- examples/emberjs/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/emberjs/package-lock.json b/examples/emberjs/package-lock.json index d9b9c6b9..8dedaac5 100644 --- a/examples/emberjs/package-lock.json +++ b/examples/emberjs/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0", "license": "MIT", "dependencies": { - "bancos-brasileiros": "^6.0.97" + "bancos-brasileiros": "^6.0.98" }, "devDependencies": { "@ember/optional-features": "^2.0.0", @@ -4880,9 +4880,9 @@ "dev": true }, "node_modules/bancos-brasileiros": { - "version": "6.0.97", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.97.tgz", - "integrity": "sha512-EiolOv8Y7pW+DpDPi+rU+DRtRbArykskL0s26L/l+dFRAHYOiebkTCTuSZ+VPbfJBEqbkHPi9o6EMiYTyLhQMQ==", + "version": "6.0.98", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.98.tgz", + "integrity": "sha512-H8yqt6IRM2QR5+JckVJ8yDXF9k/mlr+G2JHgCmvDLudRxi0WAtTXq3Aj8nnOXhfl5xgCKfEDUDyjragbF6+UDQ==", "license": "UNLICENSED" }, "node_modules/base": { @@ -24915,9 +24915,9 @@ "dev": true }, "bancos-brasileiros": { - "version": "6.0.97", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.97.tgz", - "integrity": "sha512-EiolOv8Y7pW+DpDPi+rU+DRtRbArykskL0s26L/l+dFRAHYOiebkTCTuSZ+VPbfJBEqbkHPi9o6EMiYTyLhQMQ==" + "version": "6.0.98", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.98.tgz", + "integrity": "sha512-H8yqt6IRM2QR5+JckVJ8yDXF9k/mlr+G2JHgCmvDLudRxi0WAtTXq3Aj8nnOXhfl5xgCKfEDUDyjragbF6+UDQ==" }, "base": { "version": "0.11.2", diff --git a/examples/emberjs/package.json b/examples/emberjs/package.json index c280dcfa..43ac4528 100644 --- a/examples/emberjs/package.json +++ b/examples/emberjs/package.json @@ -67,6 +67,6 @@ "edition": "octane" }, "dependencies": { - "bancos-brasileiros": "^6.0.97" + "bancos-brasileiros": "^6.0.98" } } From 69c5eb06f61a2e87426918863d5101e6f7709c3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:05:47 +0000 Subject: [PATCH 19/48] build(deps): bump guibranco/github-infisical-secrets-check-action (#597) --- .github/workflows/infisical-secrets-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/infisical-secrets-check.yml b/.github/workflows/infisical-secrets-check.yml index f2a53fc5..dd1ce4fd 100644 --- a/.github/workflows/infisical-secrets-check.yml +++ b/.github/workflows/infisical-secrets-check.yml @@ -23,4 +23,4 @@ jobs: fetch-depth: 0 - name: Infisical secrets check - uses: guibranco/github-infisical-secrets-check-action@v1.1.19 + uses: guibranco/github-infisical-secrets-check-action@v1.1.20 From c90b1a4b2d8018b0806aa575db1d2ac6ae915e21 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Thu, 5 Dec 2024 12:08:54 +0000 Subject: [PATCH 20/48] Daily updates (bot) --- CHANGELOG.md | 10 ++++++++++ data/bancos.csv | 4 ++-- data/bancos.json | 12 ++++++------ data/bancos.md | 4 ++-- data/bancos.sql | 4 ++-- data/bancos.xml | 8 ++++++-- 6 files changed, 28 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bcbf91b..c61471b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ ## Changelog +### 2024-12-05 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Updated 2 banks + - 482 - SBCASH SCD - 42.259.084/0001-22 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-12-11 11:00:00 + - 572 - ALL IN CRED SCD S.A. - 51.414.521/0001-26 + - **PixType** (SPI): Null **->** DRCT + - **DatePixStarted** (SPI): Null **->** 2024-12-10 11:00:00 + ### 2024-11-29 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Updated 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index 3506a8d7..8b994956 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -287,7 +287,7 @@ 478,11760553,11.760.553/0001-69,GAZINCRED S.A. SOCIEDADE DE CRÉDITO FINANCIAMENTO E INVESTIMENTO,GAZINCRED S.A. SCFI,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Não,Destinatário,Capital de Giro; Consignado; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,,2022-03-21,2023-01-23 13:00:00,2022-03-31T08:12:19.2479082+00:00,2024-05-15T16:49:45.7456450+00:00 479,60394079,60.394.079/0001-04,Banco ItauBank S.A.,BCO ITAUBANK S.A.,RSFN,,,,,Não,Não,,,,,https://www.itau.com.br,2002-04-22,,2021-05-05T09:11:12.7115247-03:00,2021-05-21T23:01:28.1603338-03:00 481,43599047,43.599.047/0001-26,SUPERLÓGICA SOCIEDADE DE CRÉDITO DIRETO S.A.,SUPERLÓGICA SCD S.A.,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,,,2022-08-29,2023-08-21 09:00:00,2022-08-24T12:36:20.0513082+00:00,2024-05-15T16:49:45.7519094+00:00 -482,42259084,42.259.084/0001-22,SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A.,SBCASH SCD,RSFN,,,,,Não,Não,Sim,Sim,,,,2022-10-11,,2022-10-04T12:08:42.7066127+00:00,2024-09-17T12:07:21.6345906+00:00 +482,42259084,42.259.084/0001-22,SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A.,SBCASH SCD,RSFN,,DRCT,,,Não,Não,Sim,Sim,,,,2022-10-11,2024-12-11 11:00:00,2022-10-04T12:08:42.7066127+00:00,2024-12-05T12:08:35.7132602+00:00 484,36864992,36.864.992/0001-42,MAF DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.,MAF DTVM SA,RSFN,,,,,Não,Não,,,,,,2022-07-20,,2022-07-16T12:07:46.2417741+00:00,2022-07-16T12:07:46.2417743+00:00 487,62331228,62.331.228/0001-11,DEUTSCHE BANK S.A. - BANCO ALEMAO,DEUTSCHE BANK S.A.BCO ALEMAO,RSFN,Banco Múltiplo,,Sim,Sim,Não,Não,Sim,Sim,,,https://www.deutsche-bank.com.br,2002-04-22,,2021-05-05T09:11:12.7115354-03:00,2024-05-15T16:49:45.7442314+00:00 488,46518205,46.518.205/0001-64,JPMorgan Chase Bank National Association,JPMORGAN CHASE BANK,RSFN,Banco Comercial Estrangeiro - Filial no país,,,,Não,Não,,,,,https://www.jpmorganchase.com,2002-04-22,,2021-05-05T09:11:12.7115176-03:00,2021-05-05T09:11:12.7115178-03:00 @@ -355,7 +355,7 @@ 567,33040601,33.040.601/0001-87,MERCANTIL FINANCEIRA S.A. - CRÉDITO FINANCIAMENTO E INVESTIMENTO,MERCANTIL FINANCEIRA,Internet,,,,,Não,Não,,,,Consignado; Outros Créditos; Veículos,,2023-08-28,,2023-09-25T12:28:25.1347543+00:00,2024-06-17T12:07:15.0691344+00:00 568,49933388,49.933.388/0001-72,BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A.,BRCONDOS SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2023-12-08,2024-11-13 11:00:00,2023-12-04T12:06:24.3671440+00:00,2024-11-20T12:08:13.1045667+00:00 569,12473687,12.473.687/0001-61,CONTA PRONTA INSTITUICAO DE PAGAMENTO LTDA,CONTA PRONTA IP,RSFN,,,,,Não,Não,,,,,,2023-10-31,,2023-10-25T12:06:22.8368523+00:00,2023-10-25T12:06:22.8368905+00:00 -572,51414521,51.414.521/0001-26,ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.,ALL IN CRED SCD S.A.,RSFN,,,,,Não,Não,,,,,,2023-12-22,,2023-12-18T12:06:50.1170089+00:00,2023-12-18T12:06:50.1170312+00:00 +572,51414521,51.414.521/0001-26,ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.,ALL IN CRED SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2023-12-22,2024-12-10 11:00:00,2023-12-18T12:06:50.1170089+00:00,2024-12-05T12:08:35.7332513+00:00 575,48584954,48.584.954/0001-15,DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.,DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.,RSFN,,,,,Não,Não,,,,,,2024-06-13,,2024-06-07T12:08:28.2767917+00:00,2024-06-07T12:08:28.2768294+00:00 576,11351086,11.351.086/0001-13,MERCADO BITCOIN INSTITUICAO DE PAGAMENTO LTDA,MERCADO BITCOIN IP LTDA,RSFN,,IDRT,,,Não,Não,,,,,,2024-04-01,2024-10-15 10:48:49,2024-03-26T12:06:57.0908989+00:00,2024-10-16T12:07:55.4733923+00:00 577,10663610,10.663.610/0001-29,DESENVOLVE SP - AGÊNCIA DE FOMENTO DO ESTADO DE SÃO PAULO S.A.,AF DESENVOLVE SP S.A.,RSFN,,,,,Não,Não,,,,,,2024-03-15,,2024-03-11T12:06:18.8734039+00:00,2024-03-11T12:06:18.8734358+00:00 diff --git a/data/bancos.json b/data/bancos.json index 250de6c7..75f0faf3 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -7104,7 +7104,7 @@ "ShortName": "SBCASH SCD", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -7115,9 +7115,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2022-10-11", - "DatePixStarted": null, + "DatePixStarted": "2024-12-11 11:00:00", "DateRegistered": "2022-10-04T12:08:42.7066127+00:00", - "DateUpdated": "2024-09-17T12:07:21.6345906+00:00" + "DateUpdated": "2024-12-05T12:08:35.7132602+00:00" }, { "COMPE": "484", @@ -8695,7 +8695,7 @@ "ShortName": "ALL IN CRED SCD S.A.", "Network": "RSFN", "Type": null, - "PixType": null, + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -8706,9 +8706,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2023-12-22", - "DatePixStarted": null, + "DatePixStarted": "2024-12-10 11:00:00", "DateRegistered": "2023-12-18T12:06:50.1170089+00:00", - "DateUpdated": "2023-12-18T12:06:50.1170312+00:00" + "DateUpdated": "2024-12-05T12:08:35.7332513+00:00" }, { "COMPE": "575", diff --git a/data/bancos.md b/data/bancos.md index 4bf48de6..4d91fb75 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -290,7 +290,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 478 | 11760553 | 11.760.553/0001-69 | GAZINCRED S.A. SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO | GAZINCRED S.A. SCFI | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Não | Destinatário | Capital de Giro,Consignado,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | - | 2022-03-21 | 2023-01-23 13:00:00 | 2022-03-31T08:12:19.2479082+00:00 | 2024-05-15T16:49:45.7456450+00:00 479 | 60394079 | 60.394.079/0001-04 | Banco ItauBank S.A. | BCO ITAUBANK S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://www.itau.com.br | 2002-04-22 | - | 2021-05-05T09:11:12.7115247-03:00 | 2021-05-21T23:01:28.1603338-03:00 481 | 43599047 | 43.599.047/0001-26 | SUPERLÓGICA SOCIEDADE DE CRÉDITO DIRETO S.A. | SUPERLÓGICA SCD S.A. | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | - | - | 2022-08-29 | 2023-08-21 09:00:00 | 2022-08-24T12:36:20.0513082+00:00 | 2024-05-15T16:49:45.7519094+00:00 -482 | 42259084 | 42.259.084/0001-22 | SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A. | SBCASH SCD | RSFN | - | - | - | - | Não | Não | Sim | Sim | - | - | - | 2022-10-11 | - | 2022-10-04T12:08:42.7066127+00:00 | 2024-09-17T12:07:21.6345906+00:00 +482 | 42259084 | 42.259.084/0001-22 | SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A. | SBCASH SCD | RSFN | - | DRCT | - | - | Não | Não | Sim | Sim | - | - | - | 2022-10-11 | 2024-12-11 11:00:00 | 2022-10-04T12:08:42.7066127+00:00 | 2024-12-05T12:08:35.7132602+00:00 484 | 36864992 | 36.864.992/0001-42 | MAF DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. | MAF DTVM SA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2022-07-20 | - | 2022-07-16T12:07:46.2417741+00:00 | 2022-07-16T12:07:46.2417743+00:00 487 | 62331228 | 62.331.228/0001-11 | DEUTSCHE BANK S.A. - BANCO ALEMAO | DEUTSCHE BANK S.A.BCO ALEMAO | RSFN | Banco Múltiplo | - | Sim | Sim | Não | Não | Sim | Sim | - | - | https://www.deutsche-bank.com.br | 2002-04-22 | - | 2021-05-05T09:11:12.7115354-03:00 | 2024-05-15T16:49:45.7442314+00:00 488 | 46518205 | 46.518.205/0001-64 | JPMorgan Chase Bank, National Association | JPMORGAN CHASE BANK | RSFN | Banco Comercial Estrangeiro - Filial no país | - | - | - | Não | Não | - | - | - | - | https://www.jpmorganchase.com | 2002-04-22 | - | 2021-05-05T09:11:12.7115176-03:00 | 2021-05-05T09:11:12.7115178-03:00 @@ -358,7 +358,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 567 | 33040601 | 33.040.601/0001-87 | MERCANTIL FINANCEIRA S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO | MERCANTIL FINANCEIRA | Internet | - | - | - | - | Não | Não | - | - | - | Consignado,Outros Créditos,Veículos | - | 2023-08-28 | - | 2023-09-25T12:28:25.1347543+00:00 | 2024-06-17T12:07:15.0691344+00:00 568 | 49933388 | 49.933.388/0001-72 | BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A. | BRCONDOS SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2023-12-08 | 2024-11-13 11:00:00 | 2023-12-04T12:06:24.3671440+00:00 | 2024-11-20T12:08:13.1045667+00:00 569 | 12473687 | 12.473.687/0001-61 | CONTA PRONTA INSTITUICAO DE PAGAMENTO LTDA | CONTA PRONTA IP | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-10-31 | - | 2023-10-25T12:06:22.8368523+00:00 | 2023-10-25T12:06:22.8368905+00:00 -572 | 51414521 | 51.414.521/0001-26 | ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A. | ALL IN CRED SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-12-22 | - | 2023-12-18T12:06:50.1170089+00:00 | 2023-12-18T12:06:50.1170312+00:00 +572 | 51414521 | 51.414.521/0001-26 | ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A. | ALL IN CRED SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2023-12-22 | 2024-12-10 11:00:00 | 2023-12-18T12:06:50.1170089+00:00 | 2024-12-05T12:08:35.7332513+00:00 575 | 48584954 | 48.584.954/0001-15 | DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO. | DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-06-13 | - | 2024-06-07T12:08:28.2767917+00:00 | 2024-06-07T12:08:28.2768294+00:00 576 | 11351086 | 11.351.086/0001-13 | MERCADO BITCOIN INSTITUICAO DE PAGAMENTO LTDA | MERCADO BITCOIN IP LTDA | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-04-01 | 2024-10-15 10:48:49 | 2024-03-26T12:06:57.0908989+00:00 | 2024-10-16T12:07:55.4733923+00:00 577 | 10663610 | 10.663.610/0001-29 | DESENVOLVE SP - AGÊNCIA DE FOMENTO DO ESTADO DE SÃO PAULO S.A. | AF DESENVOLVE SP S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-03-15 | - | 2024-03-11T12:06:18.8734039+00:00 | 2024-03-11T12:06:18.8734358+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index 6e26ff69..f2783137 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -286,7 +286,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('478','11760553','11.760.553/0001-69','GAZINCRED S.A. SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO','GAZINCRED S.A. SCFI',NULL,'DRCT','RSFN',1,0,0,0,1,0,'Destinatário','Capital de Giro,Consignado,Outros Créditos,Pessoal,Troca de Modalidade,Veículos',NULL,'2022-03-21','2023-01-23 13:00:00','2022-03-31T08:12:19.2479082+00:00','2024-05-15T16:49:45.7456450+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('479','60394079','60.394.079/0001-04','Banco ItauBank S.A.','BCO ITAUBANK S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.itau.com.br','2002-04-22',NULL,'2021-05-05T09:11:12.7115247-03:00','2021-05-21T23:01:28.1603338-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('481','43599047','43.599.047/0001-26','SUPERLÓGICA SOCIEDADE DE CRÉDITO DIRETO S.A.','SUPERLÓGICA SCD S.A.',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,NULL,NULL,'2022-08-29','2023-08-21 09:00:00','2022-08-24T12:36:20.0513082+00:00','2024-05-15T16:49:45.7519094+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('482','42259084','42.259.084/0001-22','SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A.','SBCASH SCD',NULL,NULL,'RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2022-10-11',NULL,'2022-10-04T12:08:42.7066127+00:00','2024-09-17T12:07:21.6345906+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('482','42259084','42.259.084/0001-22','SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A.','SBCASH SCD',NULL,'DRCT','RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2022-10-11','2024-12-11 11:00:00','2022-10-04T12:08:42.7066127+00:00','2024-12-05T12:08:35.7132602+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('484','36864992','36.864.992/0001-42','MAF DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.','MAF DTVM SA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2022-07-20',NULL,'2022-07-16T12:07:46.2417741+00:00','2022-07-16T12:07:46.2417743+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('487','62331228','62.331.228/0001-11','DEUTSCHE BANK S.A. - BANCO ALEMAO','DEUTSCHE BANK S.A.BCO ALEMAO','Banco Múltiplo',NULL,'RSFN',1,1,0,0,1,1,NULL,NULL,'https://www.deutsche-bank.com.br','2002-04-22',NULL,'2021-05-05T09:11:12.7115354-03:00','2024-05-15T16:49:45.7442314+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('488','46518205','46.518.205/0001-64','JPMorgan Chase Bank, National Association','JPMORGAN CHASE BANK','Banco Comercial Estrangeiro - Filial no país',NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.jpmorganchase.com','2002-04-22',NULL,'2021-05-05T09:11:12.7115176-03:00','2021-05-05T09:11:12.7115178-03:00'); @@ -354,7 +354,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('567','33040601','33.040.601/0001-87','MERCANTIL FINANCEIRA S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO','MERCANTIL FINANCEIRA',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,'Consignado,Outros Créditos,Veículos',NULL,'2023-08-28',NULL,'2023-09-25T12:28:25.1347543+00:00','2024-06-17T12:07:15.0691344+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('568','49933388','49.933.388/0001-72','BRCONDOS SOCIEDADE DE CRÉDITO DIRETO S.A.','BRCONDOS SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-12-08','2024-11-13 11:00:00','2023-12-04T12:06:24.3671440+00:00','2024-11-20T12:08:13.1045667+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('569','12473687','12.473.687/0001-61','CONTA PRONTA INSTITUICAO DE PAGAMENTO LTDA','CONTA PRONTA IP',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-10-31',NULL,'2023-10-25T12:06:22.8368523+00:00','2023-10-25T12:06:22.8368905+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('572','51414521','51.414.521/0001-26','ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.','ALL IN CRED SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-12-22',NULL,'2023-12-18T12:06:50.1170089+00:00','2023-12-18T12:06:50.1170312+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('572','51414521','51.414.521/0001-26','ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A.','ALL IN CRED SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-12-22','2024-12-10 11:00:00','2023-12-18T12:06:50.1170089+00:00','2024-12-05T12:08:35.7332513+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('575','48584954','48.584.954/0001-15','DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.','DGBK CREDIT S.A. - SOCIEDADE DE CRÉDITO DIRETO.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-06-13',NULL,'2024-06-07T12:08:28.2767917+00:00','2024-06-07T12:08:28.2768294+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('576','11351086','11.351.086/0001-13','MERCADO BITCOIN INSTITUICAO DE PAGAMENTO LTDA','MERCADO BITCOIN IP LTDA',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-04-01','2024-10-15 10:48:49','2024-03-26T12:06:57.0908989+00:00','2024-10-16T12:07:55.4733923+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('577','10663610','10.663.610/0001-29','DESENVOLVE SP - AGÊNCIA DE FOMENTO DO ESTADO DE SÃO PAULO S.A.','AF DESENVOLVE SP S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-15',NULL,'2024-03-11T12:06:18.8734039+00:00','2024-03-11T12:06:18.8734358+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 9292ad35..28e01d89 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -6165,6 +6165,7 @@ SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A. SBCASH SCD RSFN + DRCT false @@ -6173,8 +6174,9 @@ true 2022-10-11 + 2024-12-11 11:00:00 2022-10-04T12:08:42.7066127Z - 2024-09-17T12:07:21.6345906Z + 2024-12-05T12:08:35.7132602Z 484 @@ -7468,6 +7470,7 @@ ALL IN CRED SOCIEDADE DE CREDITO DIRETO S.A. ALL IN CRED SCD S.A. RSFN + DRCT false @@ -7476,8 +7479,9 @@ 2023-12-22 + 2024-12-10 11:00:00 2023-12-18T12:06:50.1170089Z - 2023-12-18T12:06:50.1170312Z + 2024-12-05T12:08:35.7332513Z 575 From 904bc73141975bed2aea251e217e30113dd7a3f7 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Fri, 6 Dec 2024 12:08:59 +0000 Subject: [PATCH 21/48] Daily updates (bot) --- CHANGELOG.md | 9 +++++++++ data/bancos.csv | 3 ++- data/bancos.json | 29 ++++++++++++++++++++++++++--- data/bancos.md | 3 ++- data/bancos.sql | 3 ++- data/bancos.xml | 26 +++++++++++++++++++++++--- 6 files changed, 64 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c61471b4..2af5dc11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ ## Changelog +### 2024-12-06 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Added 1 bank + - 674 - HINOVA PAY IP S.A. - 27.970.567/0001-47 +- Updated 1 bank + - 523 - HR DIGITAL SCD - 44.292.580/0001-03 + - **PixType** (SPI): IDRT **->** DRCT + - **DatePixStarted** (SPI): 2024-06-10 06:02:13 **->** 2024-12-05 11:10:00 + ### 2024-12-05 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Updated 2 banks diff --git a/data/bancos.csv b/data/bancos.csv index 8b994956..ec36ccec 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -309,7 +309,7 @@ 520,44705774,44.705.774/0001-93,SOMAPAY SOCIEDADE DE CRÉDITO DIRETO S.A.,SOMAPAY SCD S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2023-09-04,2024-08-13 09:27:38,2023-09-25T12:28:25.1347557+00:00,2024-08-14T12:07:34.3550167+00:00 521,44019481,44.019.481/0001-52,PEAK SOCIEDADE DE EMPRÉSTIMO ENTRE PESSOAS S.A.,PEAK SEP S.A.,RSFN,,,,,Não,Não,,,,,,2023-01-27,,2023-03-03T14:56:55.3112610+00:00,2023-03-03T14:56:55.3112610+00:00 522,47593544,47.593.544/0001-78,RED SOCIEDADE DE CRÉDITO DIRETO S.A.,RED SCD S.A.,RSFN,,,,,Não,Não,,,,,,2023-03-27,,2023-03-22T12:07:30.8431247+00:00,2023-03-22T12:07:30.8431248+00:00 -523,44292580,44.292.580/0001-03,HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A,HR DIGITAL SCD,RSFN,,IDRT,Sim,Sim,Não,Não,Sim,Sim,,,,2023-02-15,2024-06-10 06:02:13,2023-03-03T14:56:55.3112611+00:00,2024-06-11T12:07:05.2936207+00:00 +523,44292580,44.292.580/0001-03,HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A,HR DIGITAL SCD,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,,,,2023-02-15,2024-12-05 11:10:00,2023-03-03T14:56:55.3112611+00:00,2024-12-06T12:08:40.3608998+00:00 524,45854066,45.854.066/0001-87,WNT CAPITAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.,WNT CAPITAL DTVM,RSFN,,,,,Não,Não,,,,,,2023-03-01,,2023-03-03T14:56:55.3112615+00:00,2023-03-03T14:56:55.3112615+00:00 525,34265629,34.265.629/0001-85,INTERCAM CORRETORA DE CÂMBIO LTDA.,INTERCAM CC LTDA,RSFN,,,,,Não,Não,,,,,,2022-12-05,,2022-11-30T12:07:13.9849608+00:00,2022-11-30T12:07:13.9849609+00:00 526,46026562,46.026.562/0001-05,MONETARIE SOCIEDADE DE CRÉDITO DIRETO S.A.,MONETARIE SCD,RSFN,,DRCT,,,Não,Não,,,,,,2023-01-20,2024-01-10 10:00:00,2023-03-03T14:56:55.3112616+00:00,2024-01-09T12:06:14.4595303+00:00 @@ -412,6 +412,7 @@ 664,11414839,11.414.839/0001-92,EAGLE INSTITUICAO DE PAGAMENTO LTDA.,EAGLE IP LTDA.,RSFN,,,,,Não,Não,,,,,,2024-09-30,,2024-09-24T12:07:36.7070087+00:00,2024-09-24T12:07:36.7070368+00:00 665,20018183,20.018.183/0001-80,STARK BANK S.A. - INSTITUICAO DE PAGAMENTO,STARK BANK S.A. - IP,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-25,2021-12-21 02:14:54,2024-11-20T12:08:13.9187948+00:00,2024-11-20T12:08:12.9272681+00:00 671,26264220,26.264.220/0001-16,ZERO INSTITUIÇÃO DE PAGAMENTO S.A.,ZERO,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-11,2023-11-17 12:11:31,2024-11-20T12:08:13.9188245+00:00,2024-11-20T12:08:12.9794672+00:00 +674,27970567,27.970.567/0001-47,HINOVA PAY INSTITUICAO DE PAGAMENTO S.A.,HINOVA PAY IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-12-12,2024-10-15 00:05:41,2024-12-06T12:08:41.1206753+00:00,2024-12-06T12:08:40.2615333+00:00 707,62232889,62.232.889/0001-90,Banco Daycoval S.A.,BCO DAYCOVAL S.A,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.daycoval.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115338-03:00,2024-05-15T16:49:45.7268243+00:00 712,78632767,78.632.767/0001-20,OURIBANK S.A. BANCO MÚLTIPLO,OURIBANK S.A.,RSFN,Banco Múltiplo,DRCT,,,Não,Não,,,,,https://www.ourinvest.com.br,2014-01-28,2020-11-03 06:30:00,2021-05-05T09:11:12.7115456-03:00,2024-06-25T12:06:53.3082056+00:00 719,33884941,33.884.941/0001-94,BANCO MASTER MÚLTIPLO S.A.,BANCO MASTER MÚLTIPLO,RSFN,,,,,Não,Não,,,,,,2024-09-02,,2024-08-29T12:32:25.2409945+00:00,2024-08-29T12:32:25.2410239+00:00 diff --git a/data/bancos.json b/data/bancos.json index 75f0faf3..2900c245 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -7620,7 +7620,7 @@ "ShortName": "HR DIGITAL SCD", "Network": "RSFN", "Type": null, - "PixType": "IDRT", + "PixType": "DRCT", "Charge": true, "CreditDocument": true, "LegalCheque": false, @@ -7631,9 +7631,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2023-02-15", - "DatePixStarted": "2024-06-10 06:02:13", + "DatePixStarted": "2024-12-05 11:10:00", "DateRegistered": "2023-03-03T14:56:55.3112611+00:00", - "DateUpdated": "2024-06-11T12:07:05.2936207+00:00" + "DateUpdated": "2024-12-06T12:08:40.3608998+00:00" }, { "COMPE": "524", @@ -10057,6 +10057,29 @@ "DateRegistered": "2024-11-20T12:08:13.9188245+00:00", "DateUpdated": "2024-11-20T12:08:12.9794672+00:00" }, + { + "COMPE": "674", + "ISPB": "27970567", + "Document": "27.970.567/0001-47", + "LongName": "HINOVA PAY INSTITUICAO DE PAGAMENTO S.A.", + "ShortName": "HINOVA PAY IP S.A.", + "Network": "RSFN", + "Type": null, + "PixType": "IDRT", + "Charge": null, + "CreditDocument": null, + "LegalCheque": false, + "DetectaFlow": false, + "PCR": null, + "PCRP": null, + "SalaryPortability": null, + "Products": null, + "Url": null, + "DateOperationStarted": "2024-12-12", + "DatePixStarted": "2024-10-15 00:05:41", + "DateRegistered": "2024-12-06T12:08:41.1206753+00:00", + "DateUpdated": "2024-12-06T12:08:40.2615333+00:00" + }, { "COMPE": "707", "ISPB": "62232889", diff --git a/data/bancos.md b/data/bancos.md index 4d91fb75..2104bc50 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -312,7 +312,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 520 | 44705774 | 44.705.774/0001-93 | SOMAPAY SOCIEDADE DE CRÉDITO DIRETO S.A. | SOMAPAY SCD S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2023-09-04 | 2024-08-13 09:27:38 | 2023-09-25T12:28:25.1347557+00:00 | 2024-08-14T12:07:34.3550167+00:00 521 | 44019481 | 44.019.481/0001-52 | PEAK SOCIEDADE DE EMPRÉSTIMO ENTRE PESSOAS S.A. | PEAK SEP S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-01-27 | - | 2023-03-03T14:56:55.3112610+00:00 | 2023-03-03T14:56:55.3112610+00:00 522 | 47593544 | 47.593.544/0001-78 | RED SOCIEDADE DE CRÉDITO DIRETO S.A. | RED SCD S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-03-27 | - | 2023-03-22T12:07:30.8431247+00:00 | 2023-03-22T12:07:30.8431248+00:00 -523 | 44292580 | 44.292.580/0001-03 | HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A | HR DIGITAL SCD | RSFN | - | IDRT | Sim | Sim | Não | Não | Sim | Sim | - | - | - | 2023-02-15 | 2024-06-10 06:02:13 | 2023-03-03T14:56:55.3112611+00:00 | 2024-06-11T12:07:05.2936207+00:00 +523 | 44292580 | 44.292.580/0001-03 | HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A | HR DIGITAL SCD | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | - | - | 2023-02-15 | 2024-12-05 11:10:00 | 2023-03-03T14:56:55.3112611+00:00 | 2024-12-06T12:08:40.3608998+00:00 524 | 45854066 | 45.854.066/0001-87 | WNT CAPITAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. | WNT CAPITAL DTVM | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-03-01 | - | 2023-03-03T14:56:55.3112615+00:00 | 2023-03-03T14:56:55.3112615+00:00 525 | 34265629 | 34.265.629/0001-85 | INTERCAM CORRETORA DE CÂMBIO LTDA. | INTERCAM CC LTDA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2022-12-05 | - | 2022-11-30T12:07:13.9849608+00:00 | 2022-11-30T12:07:13.9849609+00:00 526 | 46026562 | 46.026.562/0001-05 | MONETARIE SOCIEDADE DE CRÉDITO DIRETO S.A. | MONETARIE SCD | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2023-01-20 | 2024-01-10 10:00:00 | 2023-03-03T14:56:55.3112616+00:00 | 2024-01-09T12:06:14.4595303+00:00 @@ -415,6 +415,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 664 | 11414839 | 11.414.839/0001-92 | EAGLE INSTITUICAO DE PAGAMENTO LTDA. | EAGLE IP LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | - | 2024-09-24T12:07:36.7070087+00:00 | 2024-09-24T12:07:36.7070368+00:00 665 | 20018183 | 20.018.183/0001-80 | STARK BANK S.A. - INSTITUICAO DE PAGAMENTO | STARK BANK S.A. - IP | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2021-12-21 02:14:54 | 2024-11-20T12:08:13.9187948+00:00 | 2024-11-20T12:08:12.9272681+00:00 671 | 26264220 | 26.264.220/0001-16 | ZERO INSTITUIÇÃO DE PAGAMENTO S.A. | ZERO | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-11 | 2023-11-17 12:11:31 | 2024-11-20T12:08:13.9188245+00:00 | 2024-11-20T12:08:12.9794672+00:00 +674 | 27970567 | 27.970.567/0001-47 | HINOVA PAY INSTITUICAO DE PAGAMENTO S.A. | HINOVA PAY IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-12-12 | 2024-10-15 00:05:41 | 2024-12-06T12:08:41.1206753+00:00 | 2024-12-06T12:08:40.2615333+00:00 707 | 62232889 | 62.232.889/0001-90 | Banco Daycoval S.A. | BCO DAYCOVAL S.A | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.daycoval.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115338-03:00 | 2024-05-15T16:49:45.7268243+00:00 712 | 78632767 | 78.632.767/0001-20 | OURIBANK S.A. BANCO MÚLTIPLO | OURIBANK S.A. | RSFN | Banco Múltiplo | DRCT | - | - | Não | Não | - | - | - | - | https://www.ourinvest.com.br | 2014-01-28 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115456-03:00 | 2024-06-25T12:06:53.3082056+00:00 719 | 33884941 | 33.884.941/0001-94 | BANCO MASTER MÚLTIPLO S.A. | BANCO MASTER MÚLTIPLO | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-02 | - | 2024-08-29T12:32:25.2409945+00:00 | 2024-08-29T12:32:25.2410239+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index f2783137..b52bdc03 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -308,7 +308,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('520','44705774','44.705.774/0001-93','SOMAPAY SOCIEDADE DE CRÉDITO DIRETO S.A.','SOMAPAY SCD S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-09-04','2024-08-13 09:27:38','2023-09-25T12:28:25.1347557+00:00','2024-08-14T12:07:34.3550167+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('521','44019481','44.019.481/0001-52','PEAK SOCIEDADE DE EMPRÉSTIMO ENTRE PESSOAS S.A.','PEAK SEP S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-01-27',NULL,'2023-03-03T14:56:55.3112610+00:00','2023-03-03T14:56:55.3112610+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('522','47593544','47.593.544/0001-78','RED SOCIEDADE DE CRÉDITO DIRETO S.A.','RED SCD S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-03-27',NULL,'2023-03-22T12:07:30.8431247+00:00','2023-03-22T12:07:30.8431248+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('523','44292580','44.292.580/0001-03','HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A','HR DIGITAL SCD',NULL,'IDRT','RSFN',1,1,0,0,1,1,NULL,NULL,NULL,'2023-02-15','2024-06-10 06:02:13','2023-03-03T14:56:55.3112611+00:00','2024-06-11T12:07:05.2936207+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('523','44292580','44.292.580/0001-03','HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A','HR DIGITAL SCD',NULL,'DRCT','RSFN',1,1,0,0,1,1,NULL,NULL,NULL,'2023-02-15','2024-12-05 11:10:00','2023-03-03T14:56:55.3112611+00:00','2024-12-06T12:08:40.3608998+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('524','45854066','45.854.066/0001-87','WNT CAPITAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.','WNT CAPITAL DTVM',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-03-01',NULL,'2023-03-03T14:56:55.3112615+00:00','2023-03-03T14:56:55.3112615+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('525','34265629','34.265.629/0001-85','INTERCAM CORRETORA DE CÂMBIO LTDA.','INTERCAM CC LTDA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2022-12-05',NULL,'2022-11-30T12:07:13.9849608+00:00','2022-11-30T12:07:13.9849609+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('526','46026562','46.026.562/0001-05','MONETARIE SOCIEDADE DE CRÉDITO DIRETO S.A.','MONETARIE SCD',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-01-20','2024-01-10 10:00:00','2023-03-03T14:56:55.3112616+00:00','2024-01-09T12:06:14.4595303+00:00'); @@ -411,6 +411,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('664','11414839','11.414.839/0001-92','EAGLE INSTITUICAO DE PAGAMENTO LTDA.','EAGLE IP LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30',NULL,'2024-09-24T12:07:36.7070087+00:00','2024-09-24T12:07:36.7070368+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('665','20018183','20.018.183/0001-80','STARK BANK S.A. - INSTITUICAO DE PAGAMENTO','STARK BANK S.A. - IP',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2021-12-21 02:14:54','2024-11-20T12:08:13.9187948+00:00','2024-11-20T12:08:12.9272681+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('671','26264220','26.264.220/0001-16','ZERO INSTITUIÇÃO DE PAGAMENTO S.A.','ZERO',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-11','2023-11-17 12:11:31','2024-11-20T12:08:13.9188245+00:00','2024-11-20T12:08:12.9794672+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('674','27970567','27.970.567/0001-47','HINOVA PAY INSTITUICAO DE PAGAMENTO S.A.','HINOVA PAY IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-12-12','2024-10-15 00:05:41','2024-12-06T12:08:41.1206753+00:00','2024-12-06T12:08:40.2615333+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('707','62232889','62.232.889/0001-90','Banco Daycoval S.A.','BCO DAYCOVAL S.A','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,NULL,'Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.daycoval.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115338-03:00','2024-05-15T16:49:45.7268243+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('712','78632767','78.632.767/0001-20','OURIBANK S.A. BANCO MÚLTIPLO','OURIBANK S.A.','Banco Múltiplo','DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.ourinvest.com.br','2014-01-28','2020-11-03 06:30:00','2021-05-05T09:11:12.7115456-03:00','2024-06-25T12:06:53.3082056+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('719','33884941','33.884.941/0001-94','BANCO MASTER MÚLTIPLO S.A.','BANCO MASTER MÚLTIPLO',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-02',NULL,'2024-08-29T12:32:25.2409945+00:00','2024-08-29T12:32:25.2410239+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 28e01d89..26cc84bc 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -6588,7 +6588,7 @@ HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A HR DIGITAL SCD RSFN - IDRT + DRCT true true false @@ -6597,9 +6597,9 @@ true 2023-02-15 - 2024-06-10 06:02:13 + 2024-12-05 11:10:00 2023-03-03T14:56:55.3112611Z - 2024-06-11T12:07:05.2936207Z + 2024-12-06T12:08:40.3608998Z 524 @@ -8642,6 +8642,26 @@ 2024-11-20T12:08:13.9188245Z 2024-11-20T12:08:12.9794672Z + + 674 + 27970567 + 27.970.567/0001-47 + HINOVA PAY INSTITUICAO DE PAGAMENTO S.A. + HINOVA PAY IP S.A. + RSFN + IDRT + + + false + false + + + + 2024-12-12 + 2024-10-15 00:05:41 + 2024-12-06T12:08:41.1206753Z + 2024-12-06T12:08:40.2615333Z + 707 62232889 From 7efaee79f8ed8ec587d9d67075415e171f38a1ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 10:08:42 +0000 Subject: [PATCH 22/48] build(deps): bump guibranco/github-infisical-secrets-check-action (#603) Bumps [guibranco/github-infisical-secrets-check-action](https://github.com/guibranco/github-infisical-secrets-check-action) from 1.1.20 to 1.1.21. - [Release notes](https://github.com/guibranco/github-infisical-secrets-check-action/releases) - [Commits](https://github.com/guibranco/github-infisical-secrets-check-action/compare/v1.1.20...v1.1.21) --- updated-dependencies: - dependency-name: guibranco/github-infisical-secrets-check-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/infisical-secrets-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/infisical-secrets-check.yml b/.github/workflows/infisical-secrets-check.yml index dd1ce4fd..919f325e 100644 --- a/.github/workflows/infisical-secrets-check.yml +++ b/.github/workflows/infisical-secrets-check.yml @@ -23,4 +23,4 @@ jobs: fetch-depth: 0 - name: Infisical secrets check - uses: guibranco/github-infisical-secrets-check-action@v1.1.20 + uses: guibranco/github-infisical-secrets-check-action@v1.1.21 From 9c54823d1236bcabc7fb3d5b76ba0c2cf5f0081a Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Tue, 10 Dec 2024 10:17:21 +0000 Subject: [PATCH 23/48] fix: upgrade bancos-brasileiros from 6.0.98 to 6.0.102 (#602) Snyk has created this PR to upgrade bancos-brasileiros from 6.0.98 to 6.0.102. See this package in npm: bancos-brasileiros See this project in Snyk: https://app.snyk.io/org/guibranco/project/337dc2ee-ac4c-4ec7-8f33-7fddb26040de?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- examples/emberjs/package-lock.json | 14 +++++++------- examples/emberjs/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/emberjs/package-lock.json b/examples/emberjs/package-lock.json index 8dedaac5..bf424f4f 100644 --- a/examples/emberjs/package-lock.json +++ b/examples/emberjs/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0", "license": "MIT", "dependencies": { - "bancos-brasileiros": "^6.0.98" + "bancos-brasileiros": "^6.0.102" }, "devDependencies": { "@ember/optional-features": "^2.0.0", @@ -4880,9 +4880,9 @@ "dev": true }, "node_modules/bancos-brasileiros": { - "version": "6.0.98", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.98.tgz", - "integrity": "sha512-H8yqt6IRM2QR5+JckVJ8yDXF9k/mlr+G2JHgCmvDLudRxi0WAtTXq3Aj8nnOXhfl5xgCKfEDUDyjragbF6+UDQ==", + "version": "6.0.102", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.102.tgz", + "integrity": "sha512-ZTycIyxMrolntIXmtvYEcKoprx89GwbIOEKnO1KDdkPXa+bD+TyOnji2VwxbqvWATkZ6nDxDt/tXyCDD7XYkXQ==", "license": "UNLICENSED" }, "node_modules/base": { @@ -24915,9 +24915,9 @@ "dev": true }, "bancos-brasileiros": { - "version": "6.0.98", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.98.tgz", - "integrity": "sha512-H8yqt6IRM2QR5+JckVJ8yDXF9k/mlr+G2JHgCmvDLudRxi0WAtTXq3Aj8nnOXhfl5xgCKfEDUDyjragbF6+UDQ==" + "version": "6.0.102", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.102.tgz", + "integrity": "sha512-ZTycIyxMrolntIXmtvYEcKoprx89GwbIOEKnO1KDdkPXa+bD+TyOnji2VwxbqvWATkZ6nDxDt/tXyCDD7XYkXQ==" }, "base": { "version": "0.11.2", diff --git a/examples/emberjs/package.json b/examples/emberjs/package.json index 43ac4528..264773f8 100644 --- a/examples/emberjs/package.json +++ b/examples/emberjs/package.json @@ -67,6 +67,6 @@ "edition": "octane" }, "dependencies": { - "bancos-brasileiros": "^6.0.98" + "bancos-brasileiros": "^6.0.102" } } From ec229abf484fb9fa8ad393f7f8d6c57782762229 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Tue, 10 Dec 2024 12:09:18 +0000 Subject: [PATCH 24/48] Daily updates (bot) --- CHANGELOG.md | 11 +++++++++++ data/bancos.csv | 5 +++-- data/bancos.json | 36 +++++++++++++++++++++++++++++++----- data/bancos.md | 5 +++-- data/bancos.sql | 5 +++-- data/bancos.xml | 30 ++++++++++++++++++++++++++---- 6 files changed, 77 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2af5dc11..8358a9df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ ## Changelog +### 2024-12-10 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Added 1 bank + - 663 - ACTUAL DTVM S.A. - 44.782.130/0001-07 +- Updated 2 banks + - 634 - BCO TRIANGULO S.A. - 17.351.180/0001-59 + - **Products** (CTC): Null **->** Cheque Especial, Troca de Modalidade + - 662 - WE PAY OUT IP LTDA. - 32.708.748/0001-30 + - **PixType** (SPI): IDRT **->** DRCT + - **DatePixStarted** (SPI): 2024-07-03 15:28:02 **->** 2024-12-09 11:10:00 + ### 2024-12-06 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Added 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index ec36ccec..89657d4e 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -394,7 +394,7 @@ 630,58497702,58.497.702/0001-02,BANCO LETSBANK S.A.,BCO LETSBANK S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,,,,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115221-03:00,2024-05-15T16:49:45.7316055+00:00 632,52586293,52.586.293/0001-34,Z-ON SOCIEDADE DE CRÉDITO DIRETO S.A.,Z-ON SCD S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-10-03,2024-10-03 07:07:47,2024-09-27T12:08:07.9907432+00:00,2024-10-04T12:08:01.0865649+00:00 633,68900810,68.900.810/0001-38,Banco Rendimento S.A.,BCO RENDIMENTO S.A.,RSFN,Banco Comercial,DRCT,Sim,Sim,Não,Não,Sim,Sim,,Capital de Giro; Cheque Especial; Pessoal; Troca de Modalidade,https://www.rendimento.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115412-03:00,2024-05-15T16:49:45.7340032+00:00 -634,17351180,17.351.180/0001-59,BANCO TRIANGULO S.A.,BCO TRIANGULO S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha,,https://www.tribanco.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7114888-03:00,2024-05-15T16:49:45.7366747+00:00 +634,17351180,17.351.180/0001-59,BANCO TRIANGULO S.A.,BCO TRIANGULO S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha,Cheque Especial; Troca de Modalidade,https://www.tribanco.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7114888-03:00,2024-12-10T12:09:00.3599462+00:00 636,40112555,40.112.555/0001-40,GIRO - SOCIEDADE DE CRÉDITO DIRETO S/A,GIRO - SCD S/A,Internet,,,,,Não,Não,,,,,,2024-10-02,,2024-09-26T12:08:07.0844235+00:00,2024-09-26T12:08:07.0844593+00:00 637,60889128,60.889.128/0001-80,BANCO SOFISA S.A.,BCO SOFISA S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,Destinatário,Cheque Especial; Cpaital de Giro; Crédito Imobiliário; Crédito Pessoal; Financiamento de Veículos; Outros Créditos; Troca de Modalides,https://www.sofisa.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115276-03:00,2024-05-15T16:49:45.7356738+00:00 643,62144175,62.144.175/0001-20,Banco Pine S.A.,BCO PINE S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Não,,Capital de Giro; Consignado; Troca de Modalidade; Veículos,https://www.pine.com,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115331-03:00,2024-05-15T16:49:45.7337679+00:00 @@ -408,7 +408,8 @@ 659,35210410,35.210.410/0001-41,ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA,ONEKEY PAYMENTS IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-09-30,2022-09-12 11:04:30,2024-09-24T12:07:36.7070372+00:00,2024-09-24T12:07:35.7979065+00:00 660,34471744,34.471.744/0001-06,PAGME INSTITUIÇÃO DE PAGAMENTO LTDA.,PAGME IP LTDA,RSFN,,IDRT,,,Não,Não,,,,,,2024-10-22,2023-09-19 15:07:18,2024-10-16T12:07:56.4868924+00:00,2024-10-16T12:07:55.6307764+00:00 661,55428859,55.428.859/0001-98,FREEX CORRETORA DE CAMBIO S.A.,FREEX CC S.A.,Internet,,,,,Não,Não,,,,,,2024-09-11,,2024-09-05T12:33:05.3563736+00:00,2024-09-05T12:33:05.3564037+00:00 -662,32708748,32.708.748/0001-30,WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.,WE PAY OUT IP LTDA.,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-25,2024-07-03 15:28:02,2024-11-20T12:08:13.9188247+00:00,2024-11-20T12:08:13.0175833+00:00 +662,32708748,32.708.748/0001-30,WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.,WE PAY OUT IP LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2024-11-25,2024-12-09 11:10:00,2024-11-20T12:08:13.9188247+00:00,2024-12-10T12:09:00.0743930+00:00 +663,44782130,44.782.130/0001-07,ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.,ACTUAL DTVM S.A.,RSFN,,,,,Não,Não,,,,,,2024-12-16,,2024-12-10T12:09:00.9597936+00:00,2024-12-10T12:09:00.9598224+00:00 664,11414839,11.414.839/0001-92,EAGLE INSTITUICAO DE PAGAMENTO LTDA.,EAGLE IP LTDA.,RSFN,,,,,Não,Não,,,,,,2024-09-30,,2024-09-24T12:07:36.7070087+00:00,2024-09-24T12:07:36.7070368+00:00 665,20018183,20.018.183/0001-80,STARK BANK S.A. - INSTITUICAO DE PAGAMENTO,STARK BANK S.A. - IP,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-25,2021-12-21 02:14:54,2024-11-20T12:08:13.9187948+00:00,2024-11-20T12:08:12.9272681+00:00 671,26264220,26.264.220/0001-16,ZERO INSTITUIÇÃO DE PAGAMENTO S.A.,ZERO,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-11,2023-11-17 12:11:31,2024-11-20T12:08:13.9188245+00:00,2024-11-20T12:08:12.9794672+00:00 diff --git a/data/bancos.json b/data/bancos.json index 2900c245..f4814bcc 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -9631,12 +9631,15 @@ "PCR": true, "PCRP": true, "SalaryPortability": "Banco folha", - "Products": null, + "Products": [ + "Cheque Especial", + "Troca de Modalidade" + ], "Url": "https://www.tribanco.com.br", "DateOperationStarted": "2002-04-22", "DatePixStarted": "2020-11-03 06:30:00", "DateRegistered": "2021-05-05T09:11:12.7114888-03:00", - "DateUpdated": "2024-05-15T16:49:45.7366747+00:00" + "DateUpdated": "2024-12-10T12:09:00.3599462+00:00" }, { "COMPE": "636", @@ -9973,7 +9976,7 @@ "ShortName": "WE PAY OUT IP LTDA.", "Network": "RSFN", "Type": null, - "PixType": "IDRT", + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -9984,9 +9987,32 @@ "Products": null, "Url": null, "DateOperationStarted": "2024-11-25", - "DatePixStarted": "2024-07-03 15:28:02", + "DatePixStarted": "2024-12-09 11:10:00", "DateRegistered": "2024-11-20T12:08:13.9188247+00:00", - "DateUpdated": "2024-11-20T12:08:13.0175833+00:00" + "DateUpdated": "2024-12-10T12:09:00.074393+00:00" + }, + { + "COMPE": "663", + "ISPB": "44782130", + "Document": "44.782.130/0001-07", + "LongName": "ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.", + "ShortName": "ACTUAL DTVM S.A.", + "Network": "RSFN", + "Type": null, + "PixType": null, + "Charge": null, + "CreditDocument": null, + "LegalCheque": false, + "DetectaFlow": false, + "PCR": null, + "PCRP": null, + "SalaryPortability": null, + "Products": null, + "Url": null, + "DateOperationStarted": "2024-12-16", + "DatePixStarted": null, + "DateRegistered": "2024-12-10T12:09:00.9597936+00:00", + "DateUpdated": "2024-12-10T12:09:00.9598224+00:00" }, { "COMPE": "664", diff --git a/data/bancos.md b/data/bancos.md index 2104bc50..f832eb58 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -397,7 +397,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 630 | 58497702 | 58.497.702/0001-02 | BANCO LETSBANK S.A. | BCO LETSBANK S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | - | - | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115221-03:00 | 2024-05-15T16:49:45.7316055+00:00 632 | 52586293 | 52.586.293/0001-34 | Z-ON SOCIEDADE DE CRÉDITO DIRETO S.A. | Z-ON SCD S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-10-03 | 2024-10-03 07:07:47 | 2024-09-27T12:08:07.9907432+00:00 | 2024-10-04T12:08:01.0865649+00:00 633 | 68900810 | 68.900.810/0001-38 | Banco Rendimento S.A. | BCO RENDIMENTO S.A. | RSFN | Banco Comercial | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | Capital de Giro,Cheque Especial,Pessoal,Troca de Modalidade | https://www.rendimento.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115412-03:00 | 2024-05-15T16:49:45.7340032+00:00 -634 | 17351180 | 17.351.180/0001-59 | BANCO TRIANGULO S.A. | BCO TRIANGULO S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha | - | https://www.tribanco.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114888-03:00 | 2024-05-15T16:49:45.7366747+00:00 +634 | 17351180 | 17.351.180/0001-59 | BANCO TRIANGULO S.A. | BCO TRIANGULO S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha | Cheque Especial,Troca de Modalidade | https://www.tribanco.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114888-03:00 | 2024-12-10T12:09:00.3599462+00:00 636 | 40112555 | 40.112.555/0001-40 | GIRO - SOCIEDADE DE CRÉDITO DIRETO S/A | GIRO - SCD S/A | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2024-10-02 | - | 2024-09-26T12:08:07.0844235+00:00 | 2024-09-26T12:08:07.0844593+00:00 637 | 60889128 | 60.889.128/0001-80 | BANCO SOFISA S.A. | BCO SOFISA S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | Destinatário | Cheque Especial,Cpaital de Giro,Crédito Imobiliário,Crédito Pessoal,Financiamento de Veículos,Outros Créditos,Troca de Modalides | https://www.sofisa.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115276-03:00 | 2024-05-15T16:49:45.7356738+00:00 643 | 62144175 | 62.144.175/0001-20 | Banco Pine S.A. | BCO PINE S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Não | - | Capital de Giro,Consignado,Troca de Modalidade,Veículos | https://www.pine.com | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115331-03:00 | 2024-05-15T16:49:45.7337679+00:00 @@ -411,7 +411,8 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 659 | 35210410 | 35.210.410/0001-41 | ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA | ONEKEY PAYMENTS IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | 2022-09-12 11:04:30 | 2024-09-24T12:07:36.7070372+00:00 | 2024-09-24T12:07:35.7979065+00:00 660 | 34471744 | 34.471.744/0001-06 | PAGME INSTITUIÇÃO DE PAGAMENTO LTDA. | PAGME IP LTDA | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-10-22 | 2023-09-19 15:07:18 | 2024-10-16T12:07:56.4868924+00:00 | 2024-10-16T12:07:55.6307764+00:00 661 | 55428859 | 55.428.859/0001-98 | FREEX CORRETORA DE CAMBIO S.A. | FREEX CC S.A. | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-11 | - | 2024-09-05T12:33:05.3563736+00:00 | 2024-09-05T12:33:05.3564037+00:00 -662 | 32708748 | 32.708.748/0001-30 | WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA. | WE PAY OUT IP LTDA. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2024-07-03 15:28:02 | 2024-11-20T12:08:13.9188247+00:00 | 2024-11-20T12:08:13.0175833+00:00 +662 | 32708748 | 32.708.748/0001-30 | WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA. | WE PAY OUT IP LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2024-12-09 11:10:00 | 2024-11-20T12:08:13.9188247+00:00 | 2024-12-10T12:09:00.0743930+00:00 +663 | 44782130 | 44.782.130/0001-07 | ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. | ACTUAL DTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-12-16 | - | 2024-12-10T12:09:00.9597936+00:00 | 2024-12-10T12:09:00.9598224+00:00 664 | 11414839 | 11.414.839/0001-92 | EAGLE INSTITUICAO DE PAGAMENTO LTDA. | EAGLE IP LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | - | 2024-09-24T12:07:36.7070087+00:00 | 2024-09-24T12:07:36.7070368+00:00 665 | 20018183 | 20.018.183/0001-80 | STARK BANK S.A. - INSTITUICAO DE PAGAMENTO | STARK BANK S.A. - IP | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2021-12-21 02:14:54 | 2024-11-20T12:08:13.9187948+00:00 | 2024-11-20T12:08:12.9272681+00:00 671 | 26264220 | 26.264.220/0001-16 | ZERO INSTITUIÇÃO DE PAGAMENTO S.A. | ZERO | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-11 | 2023-11-17 12:11:31 | 2024-11-20T12:08:13.9188245+00:00 | 2024-11-20T12:08:12.9794672+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index b52bdc03..8af8a1be 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -393,7 +393,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('630','58497702','58.497.702/0001-02','BANCO LETSBANK S.A.','BCO LETSBANK S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,NULL,NULL,NULL,'2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115221-03:00','2024-05-15T16:49:45.7316055+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('632','52586293','52.586.293/0001-34','Z-ON SOCIEDADE DE CRÉDITO DIRETO S.A.','Z-ON SCD S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-03','2024-10-03 07:07:47','2024-09-27T12:08:07.9907432+00:00','2024-10-04T12:08:01.0865649+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('633','68900810','68.900.810/0001-38','Banco Rendimento S.A.','BCO RENDIMENTO S.A.','Banco Comercial','DRCT','RSFN',1,1,0,0,1,1,NULL,'Capital de Giro,Cheque Especial,Pessoal,Troca de Modalidade','https://www.rendimento.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115412-03:00','2024-05-15T16:49:45.7340032+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('634','17351180','17.351.180/0001-59','BANCO TRIANGULO S.A.','BCO TRIANGULO S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Banco folha',NULL,'https://www.tribanco.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7114888-03:00','2024-05-15T16:49:45.7366747+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('634','17351180','17.351.180/0001-59','BANCO TRIANGULO S.A.','BCO TRIANGULO S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Banco folha','Cheque Especial,Troca de Modalidade','https://www.tribanco.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7114888-03:00','2024-12-10T12:09:00.3599462+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('636','40112555','40.112.555/0001-40','GIRO - SOCIEDADE DE CRÉDITO DIRETO S/A','GIRO - SCD S/A',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-02',NULL,'2024-09-26T12:08:07.0844235+00:00','2024-09-26T12:08:07.0844593+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('637','60889128','60.889.128/0001-80','BANCO SOFISA S.A.','BCO SOFISA S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,'Destinatário','Cheque Especial,Cpaital de Giro,Crédito Imobiliário,Crédito Pessoal,Financiamento de Veículos,Outros Créditos,Troca de Modalides','https://www.sofisa.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115276-03:00','2024-05-15T16:49:45.7356738+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('643','62144175','62.144.175/0001-20','Banco Pine S.A.','BCO PINE S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,0,NULL,'Capital de Giro,Consignado,Troca de Modalidade,Veículos','https://www.pine.com','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115331-03:00','2024-05-15T16:49:45.7337679+00:00'); @@ -407,7 +407,8 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('659','35210410','35.210.410/0001-41','ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA','ONEKEY PAYMENTS IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30','2022-09-12 11:04:30','2024-09-24T12:07:36.7070372+00:00','2024-09-24T12:07:35.7979065+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('660','34471744','34.471.744/0001-06','PAGME INSTITUIÇÃO DE PAGAMENTO LTDA.','PAGME IP LTDA',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-22','2023-09-19 15:07:18','2024-10-16T12:07:56.4868924+00:00','2024-10-16T12:07:55.6307764+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('661','55428859','55.428.859/0001-98','FREEX CORRETORA DE CAMBIO S.A.','FREEX CC S.A.',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-11',NULL,'2024-09-05T12:33:05.3563736+00:00','2024-09-05T12:33:05.3564037+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('662','32708748','32.708.748/0001-30','WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.','WE PAY OUT IP LTDA.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2024-07-03 15:28:02','2024-11-20T12:08:13.9188247+00:00','2024-11-20T12:08:13.0175833+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('662','32708748','32.708.748/0001-30','WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.','WE PAY OUT IP LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2024-12-09 11:10:00','2024-11-20T12:08:13.9188247+00:00','2024-12-10T12:09:00.0743930+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('663','44782130','44.782.130/0001-07','ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.','ACTUAL DTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-12-16',NULL,'2024-12-10T12:09:00.9597936+00:00','2024-12-10T12:09:00.9598224+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('664','11414839','11.414.839/0001-92','EAGLE INSTITUICAO DE PAGAMENTO LTDA.','EAGLE IP LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30',NULL,'2024-09-24T12:07:36.7070087+00:00','2024-09-24T12:07:36.7070368+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('665','20018183','20.018.183/0001-80','STARK BANK S.A. - INSTITUICAO DE PAGAMENTO','STARK BANK S.A. - IP',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2021-12-21 02:14:54','2024-11-20T12:08:13.9187948+00:00','2024-11-20T12:08:12.9272681+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('671','26264220','26.264.220/0001-16','ZERO INSTITUIÇÃO DE PAGAMENTO S.A.','ZERO',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-11','2023-11-17 12:11:31','2024-11-20T12:08:13.9188245+00:00','2024-11-20T12:08:12.9794672+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 26cc84bc..e2ae7202 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -8269,11 +8269,15 @@ true true Banco folha + + Cheque Especial + Troca de Modalidade + https://www.tribanco.com.br 2002-04-22 2020-11-03 06:30:00 2021-05-05T09:11:12.7114888-03:00 - 2024-05-15T16:49:45.7366747Z + 2024-12-10T12:09:00.3599462Z 636 @@ -8571,7 +8575,7 @@ WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA. WE PAY OUT IP LTDA. RSFN - IDRT + DRCT false @@ -8580,9 +8584,27 @@ 2024-11-25 - 2024-07-03 15:28:02 + 2024-12-09 11:10:00 2024-11-20T12:08:13.9188247Z - 2024-11-20T12:08:13.0175833Z + 2024-12-10T12:09:00.074393Z + + + 663 + 44782130 + 44.782.130/0001-07 + ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. + ACTUAL DTVM S.A. + RSFN + + + false + false + + + + 2024-12-16 + 2024-12-10T12:09:00.9597936Z + 2024-12-10T12:09:00.9598224Z 664 From 5b9b8a7b19d1ce25946d721530d889d443f69476 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:30:19 +0000 Subject: [PATCH 25/48] Update .github/workflows/sonar-cloud.yml (#604) Co-authored-by: gitauto-ai[bot] <161652217+gitauto-ai[bot]@users.noreply.github.com> --- .github/workflows/sonar-cloud.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar-cloud.yml b/.github/workflows/sonar-cloud.yml index d7d79c52..3318110b 100644 --- a/.github/workflows/sonar-cloud.yml +++ b/.github/workflows/sonar-cloud.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master + uses: sonarsource/sonarqube-scan-action@v4.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 893248a74348b14b08a86dc22ba783bf01eb28ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:30:33 +0000 Subject: [PATCH 26/48] docs(contributor): contrib-readme-action has updated readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 9ea79f3f..29092cbb 100644 --- a/README.md +++ b/README.md @@ -382,6 +382,13 @@ The data is automatically updated daily using a [tool](https://github.com/guibra
deepsource-io[bot] + + + + gitauto-ai[bot] +
+ gitauto-ai[bot] +
From b61cbd1028633b7301546c5f10251b27e9ec36a4 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 12 Dec 2024 22:40:07 +0000 Subject: [PATCH 27/48] Update .lycheeignore (#606) --- .lycheeignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.lycheeignore b/.lycheeignore index a047270b..47d4b425 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -27,5 +27,6 @@ paranabanco\.com\.br rabobank\.com\.br sisprimedobrasil\.com\.br travelexbank\.com\.br +ubs\.com unicred\.com\.br xpi\.com\.br From 16df071601418f6c329a54f60f9175d8391656d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 22:40:20 +0000 Subject: [PATCH 28/48] docs(contributor): contrib-readme-action has updated readme --- README.pt-br.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.pt-br.md b/README.pt-br.md index 5413e261..cdffb74e 100644 --- a/README.pt-br.md +++ b/README.pt-br.md @@ -382,6 +382,13 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr
deepsource-io[bot] + + + + gitauto-ai[bot] +
+ gitauto-ai[bot] +
From 05871bab2e63d4ba4c30f441850ec21715896265 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Sat, 14 Dec 2024 14:29:05 +0000 Subject: [PATCH 29/48] fix: upgrade bancos-brasileiros from 6.0.102 to 6.1.2 (#609) Snyk has created this PR to upgrade bancos-brasileiros from 6.0.102 to 6.1.2. See this package in npm: bancos-brasileiros See this project in Snyk: https://app.snyk.io/org/guibranco/project/337dc2ee-ac4c-4ec7-8f33-7fddb26040de?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- examples/emberjs/package-lock.json | 14 +++++++------- examples/emberjs/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/emberjs/package-lock.json b/examples/emberjs/package-lock.json index bf424f4f..dc2cf99e 100644 --- a/examples/emberjs/package-lock.json +++ b/examples/emberjs/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0", "license": "MIT", "dependencies": { - "bancos-brasileiros": "^6.0.102" + "bancos-brasileiros": "^6.1.2" }, "devDependencies": { "@ember/optional-features": "^2.0.0", @@ -4880,9 +4880,9 @@ "dev": true }, "node_modules/bancos-brasileiros": { - "version": "6.0.102", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.102.tgz", - "integrity": "sha512-ZTycIyxMrolntIXmtvYEcKoprx89GwbIOEKnO1KDdkPXa+bD+TyOnji2VwxbqvWATkZ6nDxDt/tXyCDD7XYkXQ==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.1.2.tgz", + "integrity": "sha512-q8P4Glr1TwNtGJsHu3CjW2cIUMs3QjkXZGukdUbklaGhhnGPc5aHt36ybL2hxAZ9I9NDldTG8r0AhKLS0bB6Ew==", "license": "UNLICENSED" }, "node_modules/base": { @@ -24915,9 +24915,9 @@ "dev": true }, "bancos-brasileiros": { - "version": "6.0.102", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.0.102.tgz", - "integrity": "sha512-ZTycIyxMrolntIXmtvYEcKoprx89GwbIOEKnO1KDdkPXa+bD+TyOnji2VwxbqvWATkZ6nDxDt/tXyCDD7XYkXQ==" + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.1.2.tgz", + "integrity": "sha512-q8P4Glr1TwNtGJsHu3CjW2cIUMs3QjkXZGukdUbklaGhhnGPc5aHt36ybL2hxAZ9I9NDldTG8r0AhKLS0bB6Ew==" }, "base": { "version": "0.11.2", diff --git a/examples/emberjs/package.json b/examples/emberjs/package.json index 264773f8..68500d4d 100644 --- a/examples/emberjs/package.json +++ b/examples/emberjs/package.json @@ -67,6 +67,6 @@ "edition": "octane" }, "dependencies": { - "bancos-brasileiros": "^6.0.102" + "bancos-brasileiros": "^6.1.2" } } From 5f8c928908a97944e484134cecded76a04bd5d89 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Tue, 17 Dec 2024 12:08:58 +0000 Subject: [PATCH 30/48] Daily updates (bot) --- CHANGELOG.md | 5 +++++ data/bancos.csv | 1 + data/bancos.json | 23 +++++++++++++++++++++++ data/bancos.md | 1 + data/bancos.sql | 1 + data/bancos.xml | 18 ++++++++++++++++++ 6 files changed, 49 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8358a9df..a172f8df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ## Changelog +### 2024-12-17 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Added 1 bank + - 666 - URBANO S.A. SCFI - 53.842.122/0001-91 + ### 2024-12-10 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Added 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index 89657d4e..084800fb 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -412,6 +412,7 @@ 663,44782130,44.782.130/0001-07,ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.,ACTUAL DTVM S.A.,RSFN,,,,,Não,Não,,,,,,2024-12-16,,2024-12-10T12:09:00.9597936+00:00,2024-12-10T12:09:00.9598224+00:00 664,11414839,11.414.839/0001-92,EAGLE INSTITUICAO DE PAGAMENTO LTDA.,EAGLE IP LTDA.,RSFN,,,,,Não,Não,,,,,,2024-09-30,,2024-09-24T12:07:36.7070087+00:00,2024-09-24T12:07:36.7070368+00:00 665,20018183,20.018.183/0001-80,STARK BANK S.A. - INSTITUICAO DE PAGAMENTO,STARK BANK S.A. - IP,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-25,2021-12-21 02:14:54,2024-11-20T12:08:13.9187948+00:00,2024-11-20T12:08:12.9272681+00:00 +666,53842122,53.842.122/0001-91,URBANO S.A. - SOCIEDADE DE CRÉDITO FINANCIAMENTO E INVESTIMENTO,URBANO S.A. SCFI,RSFN,,,,,Não,Não,,,,,,2024-12-23,,2024-12-17T12:08:44.2545545+00:00,2024-12-17T12:08:44.2545870+00:00 671,26264220,26.264.220/0001-16,ZERO INSTITUIÇÃO DE PAGAMENTO S.A.,ZERO,RSFN,,IDRT,,,Não,Não,,,,,,2024-11-11,2023-11-17 12:11:31,2024-11-20T12:08:13.9188245+00:00,2024-11-20T12:08:12.9794672+00:00 674,27970567,27.970.567/0001-47,HINOVA PAY INSTITUICAO DE PAGAMENTO S.A.,HINOVA PAY IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-12-12,2024-10-15 00:05:41,2024-12-06T12:08:41.1206753+00:00,2024-12-06T12:08:40.2615333+00:00 707,62232889,62.232.889/0001-90,Banco Daycoval S.A.,BCO DAYCOVAL S.A,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Sim,,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.daycoval.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115338-03:00,2024-05-15T16:49:45.7268243+00:00 diff --git a/data/bancos.json b/data/bancos.json index f4814bcc..0fd68618 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -10060,6 +10060,29 @@ "DateRegistered": "2024-11-20T12:08:13.9187948+00:00", "DateUpdated": "2024-11-20T12:08:12.9272681+00:00" }, + { + "COMPE": "666", + "ISPB": "53842122", + "Document": "53.842.122/0001-91", + "LongName": "URBANO S.A. - SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO", + "ShortName": "URBANO S.A. SCFI", + "Network": "RSFN", + "Type": null, + "PixType": null, + "Charge": null, + "CreditDocument": null, + "LegalCheque": false, + "DetectaFlow": false, + "PCR": null, + "PCRP": null, + "SalaryPortability": null, + "Products": null, + "Url": null, + "DateOperationStarted": "2024-12-23", + "DatePixStarted": null, + "DateRegistered": "2024-12-17T12:08:44.2545545+00:00", + "DateUpdated": "2024-12-17T12:08:44.254587+00:00" + }, { "COMPE": "671", "ISPB": "26264220", diff --git a/data/bancos.md b/data/bancos.md index f832eb58..75e8f619 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -415,6 +415,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 663 | 44782130 | 44.782.130/0001-07 | ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A. | ACTUAL DTVM S.A. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-12-16 | - | 2024-12-10T12:09:00.9597936+00:00 | 2024-12-10T12:09:00.9598224+00:00 664 | 11414839 | 11.414.839/0001-92 | EAGLE INSTITUICAO DE PAGAMENTO LTDA. | EAGLE IP LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | - | 2024-09-24T12:07:36.7070087+00:00 | 2024-09-24T12:07:36.7070368+00:00 665 | 20018183 | 20.018.183/0001-80 | STARK BANK S.A. - INSTITUICAO DE PAGAMENTO | STARK BANK S.A. - IP | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2021-12-21 02:14:54 | 2024-11-20T12:08:13.9187948+00:00 | 2024-11-20T12:08:12.9272681+00:00 +666 | 53842122 | 53.842.122/0001-91 | URBANO S.A. - SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO | URBANO S.A. SCFI | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-12-23 | - | 2024-12-17T12:08:44.2545545+00:00 | 2024-12-17T12:08:44.2545870+00:00 671 | 26264220 | 26.264.220/0001-16 | ZERO INSTITUIÇÃO DE PAGAMENTO S.A. | ZERO | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-11-11 | 2023-11-17 12:11:31 | 2024-11-20T12:08:13.9188245+00:00 | 2024-11-20T12:08:12.9794672+00:00 674 | 27970567 | 27.970.567/0001-47 | HINOVA PAY INSTITUICAO DE PAGAMENTO S.A. | HINOVA PAY IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-12-12 | 2024-10-15 00:05:41 | 2024-12-06T12:08:41.1206753+00:00 | 2024-12-06T12:08:40.2615333+00:00 707 | 62232889 | 62.232.889/0001-90 | Banco Daycoval S.A. | BCO DAYCOVAL S.A | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.daycoval.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115338-03:00 | 2024-05-15T16:49:45.7268243+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index 8af8a1be..e2fc87ec 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -411,6 +411,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('663','44782130','44.782.130/0001-07','ACTUAL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.','ACTUAL DTVM S.A.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-12-16',NULL,'2024-12-10T12:09:00.9597936+00:00','2024-12-10T12:09:00.9598224+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('664','11414839','11.414.839/0001-92','EAGLE INSTITUICAO DE PAGAMENTO LTDA.','EAGLE IP LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30',NULL,'2024-09-24T12:07:36.7070087+00:00','2024-09-24T12:07:36.7070368+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('665','20018183','20.018.183/0001-80','STARK BANK S.A. - INSTITUICAO DE PAGAMENTO','STARK BANK S.A. - IP',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2021-12-21 02:14:54','2024-11-20T12:08:13.9187948+00:00','2024-11-20T12:08:12.9272681+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('666','53842122','53.842.122/0001-91','URBANO S.A. - SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO','URBANO S.A. SCFI',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-12-23',NULL,'2024-12-17T12:08:44.2545545+00:00','2024-12-17T12:08:44.2545870+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('671','26264220','26.264.220/0001-16','ZERO INSTITUIÇÃO DE PAGAMENTO S.A.','ZERO',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-11','2023-11-17 12:11:31','2024-11-20T12:08:13.9188245+00:00','2024-11-20T12:08:12.9794672+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('674','27970567','27.970.567/0001-47','HINOVA PAY INSTITUICAO DE PAGAMENTO S.A.','HINOVA PAY IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-12-12','2024-10-15 00:05:41','2024-12-06T12:08:41.1206753+00:00','2024-12-06T12:08:40.2615333+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('707','62232889','62.232.889/0001-90','Banco Daycoval S.A.','BCO DAYCOVAL S.A','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,1,NULL,'Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.daycoval.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115338-03:00','2024-05-15T16:49:45.7268243+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index e2ae7202..bb986542 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -8644,6 +8644,24 @@ 2024-11-20T12:08:13.9187948Z 2024-11-20T12:08:12.9272681Z
+ + 666 + 53842122 + 53.842.122/0001-91 + URBANO S.A. - SOCIEDADE DE CRÉDITO, FINANCIAMENTO E INVESTIMENTO + URBANO S.A. SCFI + RSFN + + + false + false + + + + 2024-12-23 + 2024-12-17T12:08:44.2545545Z + 2024-12-17T12:08:44.254587Z + 671 26264220 From 8f9a8cc4bb8bca34d146b1fe74e236bc936eaa6f Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Thu, 19 Dec 2024 12:08:33 +0000 Subject: [PATCH 31/48] Daily updates (bot) --- CHANGELOG.md | 9 +++++++++ data/bancos.csv | 4 ++-- data/bancos.json | 10 +++++----- data/bancos.md | 4 ++-- data/bancos.sql | 4 ++-- data/bancos.xml | 10 +++++----- 6 files changed, 25 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a172f8df..e41e6ec2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ ## Changelog +### 2024-12-19 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Updated 2 banks + - 450 - FITBANK IP - 13.203.354/0001-85 + - **LongName** (STR): FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A. **->** FITBANK INSTITUIÇÃO DE PAGAMENTO S.A. + - 559 - KANASTRA CFI - 49.288.113/0001-23 + - **LongName** (STR): KANASTRA SOCIEDADE DE CRÉDITO DIRETO S.A. **->** KANASTRA FINANCEIRA S.A, CREDITO, FINANCIAMENTO E INVESTIMENTO + - **ShortName** (STR): KANASTRA SCD **->** KANASTRA CFI + ### 2024-12-17 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Added 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index 084800fb..5422ccb8 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -261,7 +261,7 @@ 447,12392983,12.392.983/0001-38,MIRAE ASSET (BRASIL) CORRETORA DE CÂMBIO TÍTULOS E VALORES MOBILIÁRIOS LTDA.,MIRAE ASSET (BRASIL) CCTVM LTDA.,RSFN,,,,,Não,Não,,,,,,2021-09-27,,2021-09-28T05:25:19.3475750-03:00,2023-10-06T12:06:37.6641955+00:00 448,39669186,39.669.186/0001-01,HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.,HEMERA DTVM LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2021-08-17,2024-11-11 09:00:00,2021-08-24T13:06:55.8926622-03:00,2024-11-20T12:08:13.0684787+00:00 449,37555231,37.555.231/0001-71,DM SOCIEDADE DE CRÉDITO DIRETO S.A.,DM,RSFN,,,Sim,Não,Não,Não,Sim,Sim,,,,2021-10-22,,2021-10-23T20:55:03.4293187-03:00,2024-05-15T16:49:45.7444605+00:00 -450,13203354,13.203.354/0001-85,FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A.,FITBANK IP,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,,,2021-06-30,2022-03-08 10:30:00,2021-07-06T07:20:49.2254617-03:00,2024-05-15T16:49:45.7454123+00:00 +450,13203354,13.203.354/0001-85,FITBANK INSTITUIÇÃO DE PAGAMENTO S.A.,FITBANK IP,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,,,2021-06-30,2022-03-08 10:30:00,2021-07-06T07:20:49.2254617-03:00,2024-12-19T12:08:15.9507206+00:00 451,40475846,40.475.846/0001-00,J17 - SOCIEDADE DE CRÉDITO DIRETO S/A,J17 - SCD S/A,RSFN,,DRCT,,,Não,Não,,,,,,2022-01-18,2023-11-24 10:00:00,2022-02-01T08:17:39.0832206+00:00,2023-11-23T12:06:11.9151500+00:00 452,39676772,39.676.772/0001-83,CREDIFIT SOCIEDADE DE CRÉDITO DIRETO S.A.,CREDIFIT SCD S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2021-09-15,2023-04-03 11:00:00,2021-09-13T19:08:16.9817378-03:00,2023-03-29T12:07:06.8867510+00:00 454,41592532,41.592.532/0001-42,MÉRITO DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.,MÉRITO DTVM LTDA.,RSFN,,,,,Não,Não,,,,,,2021-11-23,,2021-11-22T11:00:23.6790220-03:00,2021-11-22T11:00:23.6790225-03:00 @@ -345,7 +345,7 @@ 556,40333582,40.333.582/0001-42,SAYGO CORRETORA DE CÂMBIO S.A.,SAYGO CÂMBIO,RSFN,,,,,Não,Não,,,,,,2023-08-03,,2023-09-25T12:28:25.1347550+00:00,2024-10-01T12:08:18.4897466+00:00 557,30944783,30.944.783/0001-22,PAGPRIME INSTITUICAO DE PAGAMENTO LTDA,PAGPRIME IP,RSFN,,,,,Não,Não,,,,,,2023-10-23,,2023-10-17T12:06:27.6807413+00:00,2023-10-17T12:06:27.6807666+00:00 558,46955383,46.955.383/0001-52,QI DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.,QI DTVM LTDA.,RSFN,,,,,Não,Não,,,,,,2024-03-04,,2024-02-28T12:06:05.3104277+00:00,2024-02-28T12:06:05.3104278+00:00 -559,49288113,49.288.113/0001-23,KANASTRA SOCIEDADE DE CRÉDITO DIRETO S.A.,KANASTRA SCD,RSFN,,,,,Não,Não,Sim,Sim,,,,2023-09-25,,2023-09-25T12:28:25.1347563+00:00,2024-05-15T16:49:45.7468657+00:00 +559,49288113,49.288.113/0001-23,KANASTRA FINANCEIRA S.A CREDITO FINANCIAMENTO E INVESTIMENTO,KANASTRA CFI,RSFN,,,,,Não,Não,Sim,Sim,,,,2023-09-25,,2023-09-25T12:28:25.1347563+00:00,2024-12-19T12:08:15.9574874+00:00 560,21995256,21.995.256/0001-56,MAG INSTITUICAO DE PAGAMENTO LTDA,MAG IP LTDA.,RSFN,,IDRT,,,Não,Não,,,,,,2023-10-17,2021-02-23 19:27:38,2023-10-10T12:06:37.2093743+00:00,2023-10-10T12:06:35.7131141+00:00 561,20757199,20.757.199/0001-04,PAY4FUN INSTITUICAO DE PAGAMENTO S.A.,PAY4FUN IP S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2023-10-18,2024-05-13 10:00:00,2023-10-11T12:06:36.1964889+00:00,2024-03-08T12:07:00.4999181+00:00 562,18684408,18.684.408/0001-95,AZIMUT BRASIL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA,AZIMUT BRASIL DTVM LTDA,RSFN,,,,,Não,Não,,,,,,2024-01-08,,2024-01-09T12:06:15.1387174+00:00,2024-03-08T12:06:59.6883070+00:00 diff --git a/data/bancos.json b/data/bancos.json index 0fd68618..c0efe980 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -6485,7 +6485,7 @@ "COMPE": "450", "ISPB": "13203354", "Document": "13.203.354/0001-85", - "LongName": "FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A.", + "LongName": "FITBANK INSTITUIÇÃO DE PAGAMENTO S.A.", "ShortName": "FITBANK IP", "Network": "RSFN", "Type": null, @@ -6502,7 +6502,7 @@ "DateOperationStarted": "2021-06-30", "DatePixStarted": "2022-03-08 10:30:00", "DateRegistered": "2021-07-06T07:20:49.2254617-03:00", - "DateUpdated": "2024-05-15T16:49:45.7454123+00:00" + "DateUpdated": "2024-12-19T12:08:15.9507206+00:00" }, { "COMPE": "451", @@ -8457,8 +8457,8 @@ "COMPE": "559", "ISPB": "49288113", "Document": "49.288.113/0001-23", - "LongName": "KANASTRA SOCIEDADE DE CRÉDITO DIRETO S.A.", - "ShortName": "KANASTRA SCD", + "LongName": "KANASTRA FINANCEIRA S.A, CREDITO, FINANCIAMENTO E INVESTIMENTO", + "ShortName": "KANASTRA CFI", "Network": "RSFN", "Type": null, "PixType": null, @@ -8474,7 +8474,7 @@ "DateOperationStarted": "2023-09-25", "DatePixStarted": null, "DateRegistered": "2023-09-25T12:28:25.1347563+00:00", - "DateUpdated": "2024-05-15T16:49:45.7468657+00:00" + "DateUpdated": "2024-12-19T12:08:15.9574874+00:00" }, { "COMPE": "560", diff --git a/data/bancos.md b/data/bancos.md index 75e8f619..7ec430a7 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -264,7 +264,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 447 | 12392983 | 12.392.983/0001-38 | MIRAE ASSET (BRASIL) CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS LTDA. | MIRAE ASSET (BRASIL) CCTVM LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2021-09-27 | - | 2021-09-28T05:25:19.3475750-03:00 | 2023-10-06T12:06:37.6641955+00:00 448 | 39669186 | 39.669.186/0001-01 | HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. | HEMERA DTVM LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2021-08-17 | 2024-11-11 09:00:00 | 2021-08-24T13:06:55.8926622-03:00 | 2024-11-20T12:08:13.0684787+00:00 449 | 37555231 | 37.555.231/0001-71 | DM SOCIEDADE DE CRÉDITO DIRETO S.A. | DM | RSFN | - | - | Sim | Não | Não | Não | Sim | Sim | - | - | - | 2021-10-22 | - | 2021-10-23T20:55:03.4293187-03:00 | 2024-05-15T16:49:45.7444605+00:00 -450 | 13203354 | 13.203.354/0001-85 | FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A. | FITBANK IP | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | - | - | 2021-06-30 | 2022-03-08 10:30:00 | 2021-07-06T07:20:49.2254617-03:00 | 2024-05-15T16:49:45.7454123+00:00 +450 | 13203354 | 13.203.354/0001-85 | FITBANK INSTITUIÇÃO DE PAGAMENTO S.A. | FITBANK IP | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | - | - | 2021-06-30 | 2022-03-08 10:30:00 | 2021-07-06T07:20:49.2254617-03:00 | 2024-12-19T12:08:15.9507206+00:00 451 | 40475846 | 40.475.846/0001-00 | J17 - SOCIEDADE DE CRÉDITO DIRETO S/A | J17 - SCD S/A | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2022-01-18 | 2023-11-24 10:00:00 | 2022-02-01T08:17:39.0832206+00:00 | 2023-11-23T12:06:11.9151500+00:00 452 | 39676772 | 39.676.772/0001-83 | CREDIFIT SOCIEDADE DE CRÉDITO DIRETO S.A. | CREDIFIT SCD S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2021-09-15 | 2023-04-03 11:00:00 | 2021-09-13T19:08:16.9817378-03:00 | 2023-03-29T12:07:06.8867510+00:00 454 | 41592532 | 41.592.532/0001-42 | MÉRITO DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. | MÉRITO DTVM LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2021-11-23 | - | 2021-11-22T11:00:23.6790220-03:00 | 2021-11-22T11:00:23.6790225-03:00 @@ -348,7 +348,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 556 | 40333582 | 40.333.582/0001-42 | SAYGO CORRETORA DE CÂMBIO S.A. | SAYGO CÂMBIO | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-08-03 | - | 2023-09-25T12:28:25.1347550+00:00 | 2024-10-01T12:08:18.4897466+00:00 557 | 30944783 | 30.944.783/0001-22 | PAGPRIME INSTITUICAO DE PAGAMENTO LTDA | PAGPRIME IP | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2023-10-23 | - | 2023-10-17T12:06:27.6807413+00:00 | 2023-10-17T12:06:27.6807666+00:00 558 | 46955383 | 46.955.383/0001-52 | QI DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA. | QI DTVM LTDA. | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-03-04 | - | 2024-02-28T12:06:05.3104277+00:00 | 2024-02-28T12:06:05.3104278+00:00 -559 | 49288113 | 49.288.113/0001-23 | KANASTRA SOCIEDADE DE CRÉDITO DIRETO S.A. | KANASTRA SCD | RSFN | - | - | - | - | Não | Não | Sim | Sim | - | - | - | 2023-09-25 | - | 2023-09-25T12:28:25.1347563+00:00 | 2024-05-15T16:49:45.7468657+00:00 +559 | 49288113 | 49.288.113/0001-23 | KANASTRA FINANCEIRA S.A, CREDITO, FINANCIAMENTO E INVESTIMENTO | KANASTRA CFI | RSFN | - | - | - | - | Não | Não | Sim | Sim | - | - | - | 2023-09-25 | - | 2023-09-25T12:28:25.1347563+00:00 | 2024-12-19T12:08:15.9574874+00:00 560 | 21995256 | 21.995.256/0001-56 | MAG INSTITUICAO DE PAGAMENTO LTDA | MAG IP LTDA. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2023-10-17 | 2021-02-23 19:27:38 | 2023-10-10T12:06:37.2093743+00:00 | 2023-10-10T12:06:35.7131141+00:00 561 | 20757199 | 20.757.199/0001-04 | PAY4FUN INSTITUICAO DE PAGAMENTO S.A. | PAY4FUN IP S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2023-10-18 | 2024-05-13 10:00:00 | 2023-10-11T12:06:36.1964889+00:00 | 2024-03-08T12:07:00.4999181+00:00 562 | 18684408 | 18.684.408/0001-95 | AZIMUT BRASIL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA | AZIMUT BRASIL DTVM LTDA | RSFN | - | - | - | - | Não | Não | - | - | - | - | - | 2024-01-08 | - | 2024-01-09T12:06:15.1387174+00:00 | 2024-03-08T12:06:59.6883070+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index e2fc87ec..544a6eb6 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -260,7 +260,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('447','12392983','12.392.983/0001-38','MIRAE ASSET (BRASIL) CORRETORA DE CÂMBIO, TÍTULOS E VALORES MOBILIÁRIOS LTDA.','MIRAE ASSET (BRASIL) CCTVM LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-09-27',NULL,'2021-09-28T05:25:19.3475750-03:00','2023-10-06T12:06:37.6641955+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('448','39669186','39.669.186/0001-01','HEMERA DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.','HEMERA DTVM LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-08-17','2024-11-11 09:00:00','2021-08-24T13:06:55.8926622-03:00','2024-11-20T12:08:13.0684787+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('449','37555231','37.555.231/0001-71','DM SOCIEDADE DE CRÉDITO DIRETO S.A.','DM',NULL,NULL,'RSFN',1,0,0,0,1,1,NULL,NULL,NULL,'2021-10-22',NULL,'2021-10-23T20:55:03.4293187-03:00','2024-05-15T16:49:45.7444605+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('450','13203354','13.203.354/0001-85','FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A.','FITBANK IP',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,NULL,NULL,'2021-06-30','2022-03-08 10:30:00','2021-07-06T07:20:49.2254617-03:00','2024-05-15T16:49:45.7454123+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('450','13203354','13.203.354/0001-85','FITBANK INSTITUIÇÃO DE PAGAMENTO S.A.','FITBANK IP',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,NULL,NULL,'2021-06-30','2022-03-08 10:30:00','2021-07-06T07:20:49.2254617-03:00','2024-12-19T12:08:15.9507206+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('451','40475846','40.475.846/0001-00','J17 - SOCIEDADE DE CRÉDITO DIRETO S/A','J17 - SCD S/A',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2022-01-18','2023-11-24 10:00:00','2022-02-01T08:17:39.0832206+00:00','2023-11-23T12:06:11.9151500+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('452','39676772','39.676.772/0001-83','CREDIFIT SOCIEDADE DE CRÉDITO DIRETO S.A.','CREDIFIT SCD S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-09-15','2023-04-03 11:00:00','2021-09-13T19:08:16.9817378-03:00','2023-03-29T12:07:06.8867510+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('454','41592532','41.592.532/0001-42','MÉRITO DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.','MÉRITO DTVM LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2021-11-23',NULL,'2021-11-22T11:00:23.6790220-03:00','2021-11-22T11:00:23.6790225-03:00'); @@ -344,7 +344,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('556','40333582','40.333.582/0001-42','SAYGO CORRETORA DE CÂMBIO S.A.','SAYGO CÂMBIO',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-08-03',NULL,'2023-09-25T12:28:25.1347550+00:00','2024-10-01T12:08:18.4897466+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('557','30944783','30.944.783/0001-22','PAGPRIME INSTITUICAO DE PAGAMENTO LTDA','PAGPRIME IP',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-10-23',NULL,'2023-10-17T12:06:27.6807413+00:00','2023-10-17T12:06:27.6807666+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('558','46955383','46.955.383/0001-52','QI DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA.','QI DTVM LTDA.',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-03-04',NULL,'2024-02-28T12:06:05.3104277+00:00','2024-02-28T12:06:05.3104278+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('559','49288113','49.288.113/0001-23','KANASTRA SOCIEDADE DE CRÉDITO DIRETO S.A.','KANASTRA SCD',NULL,NULL,'RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2023-09-25',NULL,'2023-09-25T12:28:25.1347563+00:00','2024-05-15T16:49:45.7468657+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('559','49288113','49.288.113/0001-23','KANASTRA FINANCEIRA S.A, CREDITO, FINANCIAMENTO E INVESTIMENTO','KANASTRA CFI',NULL,NULL,'RSFN',NULL,NULL,0,0,1,1,NULL,NULL,NULL,'2023-09-25',NULL,'2023-09-25T12:28:25.1347563+00:00','2024-12-19T12:08:15.9574874+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('560','21995256','21.995.256/0001-56','MAG INSTITUICAO DE PAGAMENTO LTDA','MAG IP LTDA.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-10-17','2021-02-23 19:27:38','2023-10-10T12:06:37.2093743+00:00','2023-10-10T12:06:35.7131141+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('561','20757199','20.757.199/0001-04','PAY4FUN INSTITUICAO DE PAGAMENTO S.A.','PAY4FUN IP S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2023-10-18','2024-05-13 10:00:00','2023-10-11T12:06:36.1964889+00:00','2024-03-08T12:07:00.4999181+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('562','18684408','18.684.408/0001-95','AZIMUT BRASIL DISTRIBUIDORA DE TÍTULOS E VALORES MOBILIÁRIOS LTDA','AZIMUT BRASIL DTVM LTDA',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-01-08',NULL,'2024-01-09T12:06:15.1387174+00:00','2024-03-08T12:06:59.6883070+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index bb986542..37a4b5ba 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -5644,7 +5644,7 @@ 450 13203354 13.203.354/0001-85 - FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A. + FITBANK INSTITUIÇÃO DE PAGAMENTO S.A. FITBANK IP RSFN DRCT @@ -5658,7 +5658,7 @@ 2021-06-30 2022-03-08 10:30:00 2021-07-06T07:20:49.2254617-03:00 - 2024-05-15T16:49:45.7454123Z + 2024-12-19T12:08:15.9507206Z 451 @@ -7274,8 +7274,8 @@ 559 49288113 49.288.113/0001-23 - KANASTRA SOCIEDADE DE CRÉDITO DIRETO S.A. - KANASTRA SCD + KANASTRA FINANCEIRA S.A, CREDITO, FINANCIAMENTO E INVESTIMENTO + KANASTRA CFI RSFN @@ -7286,7 +7286,7 @@ 2023-09-25 2023-09-25T12:28:25.1347563Z - 2024-05-15T16:49:45.7468657Z + 2024-12-19T12:08:15.9574874Z 560 From 9e65de49ff7f7df15e97bbab503e57188f1365e5 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 19 Dec 2024 13:20:28 +0000 Subject: [PATCH 32/48] Delete SECURITY.md +semver: minor --- SECURITY.md | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md deleted file mode 100644 index 18eaaa61..00000000 --- a/SECURITY.md +++ /dev/null @@ -1,19 +0,0 @@ -# Security Policy - -## Reporting Security Issues -If you believe you have found a security vulnerability in this repository, please report it to us through coordinated disclosure. - -Please do not report security vulnerabilities through public GitHub issues, discussions, or pull requests because this could lead to leaked security breaches. - -Instead, please send an email to opensource-security[@]straccini.com. - -Please include as much of the information listed below as you can to help us better understand and resolve the issue: - -The type of issue (e.g., buffer overflow, SQL injection, or cross-site scripting) -Full paths of source file(s) related to the manifestation of the issue -The location of the affected source code (tag/branch/commit or direct URL) -Any special configuration required to reproduce the issue -Step-by-step instructions to reproduce the issue -Proof-of-concept or exploit code (if possible) -Impact of the issue, including how an attacker might exploit the issue -This information will help us triage your report more quickly. From 1c2c2d1a7f98eea7b941d5fa8922bed565a226d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:20:54 +0000 Subject: [PATCH 33/48] docs(contributor): contrib-readme-action has updated readme --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 29092cbb..27389be9 100644 --- a/README.md +++ b/README.md @@ -177,42 +177,42 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - guibranco + guibranco
Guilherme Branco Stracini
- raphaelcunha + raphaelcunha
Raphael Cunha
- Baldini + Baldini
Guilherme Baldini
- BrunoM90 + BrunoM90
Null
- sahalhes + sahalhes
E S Sahal Hussain
- Erick-Bueno + Erick-Bueno
Erick Bueno
@@ -221,42 +221,42 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - pferreirafabricio + pferreirafabricio
Fabrício Pinto Ferreira
- Guillergood + Guillergood
Guillermo Bueno Vargas
- iurisilvio + iurisilvio
Iuri De Silvio
- jesobreira + jesobreira
Jefrey Sobreira Santos
- joaovaladares + joaovaladares
João V. Valadares
- leogregianin + leogregianin
Leonardo Gregianin
@@ -265,42 +265,42 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - MauriciDmarc + MauriciDmarc
Maurici Dmarco
- rafaeldomi + rafaeldomi
Rafael Domiciano
- victorbrandaao + victorbrandaao
Victor Leonardo Brandão
- AmolKumarGupta + AmolKumarGupta
Amol
- luisccf + luisccf
Luis Carlos Cardoso
- rodrigondec + rodrigondec
Rodrigo Castro
@@ -309,7 +309,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - vduggen + vduggen
Vitor Duggen
@@ -334,35 +334,35 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - github-actions[bot] + github-actions[bot]
github-actions[bot]
- dependabot[bot] + dependabot[bot]
dependabot[bot]
- penify-dev[bot] + penify-dev[bot]
penify-dev[bot]
- stack-file[bot] + stack-file[bot]
stack-file[bot]
- codefactor-io[bot] + codefactor-io[bot]
codefactor-io[bot]
@@ -371,21 +371,21 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - deepsource-autofix[bot] + deepsource-autofix[bot]
deepsource-autofix[bot]
- deepsource-io[bot] + deepsource-io[bot]
deepsource-io[bot]
- gitauto-ai[bot] + gitauto-ai[bot]
gitauto-ai[bot]
From ff9e1e8554678aafecd75cf6f9e894f7539eb983 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:20:56 +0000 Subject: [PATCH 34/48] docs(contributor): contrib-readme-action has updated readme --- README.pt-br.md | 54 ++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.pt-br.md b/README.pt-br.md index cdffb74e..6fa9f50d 100644 --- a/README.pt-br.md +++ b/README.pt-br.md @@ -177,42 +177,42 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - guibranco + guibranco
Guilherme Branco Stracini
- raphaelcunha + raphaelcunha
Raphael Cunha
- Baldini + Baldini
Guilherme Baldini
- BrunoM90 + BrunoM90
Null
- sahalhes + sahalhes
E S Sahal Hussain
- Erick-Bueno + Erick-Bueno
Erick Bueno
@@ -221,42 +221,42 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - pferreirafabricio + pferreirafabricio
Fabrício Pinto Ferreira
- Guillergood + Guillergood
Guillermo Bueno Vargas
- iurisilvio + iurisilvio
Iuri De Silvio
- jesobreira + jesobreira
Jefrey Sobreira Santos
- joaovaladares + joaovaladares
João V. Valadares
- leogregianin + leogregianin
Leonardo Gregianin
@@ -265,42 +265,42 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - MauriciDmarc + MauriciDmarc
Maurici Dmarco
- rafaeldomi + rafaeldomi
Rafael Domiciano
- victorbrandaao + victorbrandaao
Victor Leonardo Brandão
- AmolKumarGupta + AmolKumarGupta
Amol
- luisccf + luisccf
Luis Carlos Cardoso
- rodrigondec + rodrigondec
Rodrigo Castro
@@ -309,7 +309,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - vduggen + vduggen
Vitor Duggen
@@ -334,35 +334,35 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - github-actions[bot] + github-actions[bot]
github-actions[bot]
- dependabot[bot] + dependabot[bot]
dependabot[bot]
- penify-dev[bot] + penify-dev[bot]
penify-dev[bot]
- stack-file[bot] + stack-file[bot]
stack-file[bot]
- codefactor-io[bot] + codefactor-io[bot]
codefactor-io[bot]
@@ -371,21 +371,21 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - deepsource-autofix[bot] + deepsource-autofix[bot]
deepsource-autofix[bot]
- deepsource-io[bot] + deepsource-io[bot]
deepsource-io[bot]
- gitauto-ai[bot] + gitauto-ai[bot]
gitauto-ai[bot]
From 229b02f5ec45f364a6c39c6ecc7323ba20576fae Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 19 Dec 2024 13:22:24 +0000 Subject: [PATCH 35/48] Delete CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 76 ---------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 05e2e98b..00000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,76 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at guilherme@guilhermebranco.com.br. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq From 49df76eff0b22150c0b15f017379e21d43cf1dc4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:22:35 +0000 Subject: [PATCH 36/48] docs(contributor): contrib-readme-action has updated readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 27389be9..26fbe2f3 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - BrunoM90 + BrunoM90
Null
@@ -228,7 +228,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - Guillergood + Guillergood
Guillermo Bueno Vargas
@@ -300,7 +300,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - rodrigondec + rodrigondec
Rodrigo Castro
From e1b7b3cd34d2e9b367683709fc0e8bae8e1bca71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:22:37 +0000 Subject: [PATCH 37/48] docs(contributor): contrib-readme-action has updated readme --- README.pt-br.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.pt-br.md b/README.pt-br.md index 6fa9f50d..4a01ec71 100644 --- a/README.pt-br.md +++ b/README.pt-br.md @@ -198,7 +198,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - BrunoM90 + BrunoM90
Null
@@ -228,7 +228,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - Guillergood + Guillergood
Guillermo Bueno Vargas
@@ -300,7 +300,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - rodrigondec + rodrigondec
Rodrigo Castro
From e43637cf98548ed1049a13074352b6b159c71733 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Thu, 19 Dec 2024 13:27:49 +0000 Subject: [PATCH 38/48] Update CONTRIBUTING.md --- CONTRIBUTING.md | 84 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 78 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 699128ab..88aef102 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,9 +1,81 @@ -# How to contribute +# 🌟 Contributing Guide -First of all, thanks for reading this doc! +Thank you for your interest in contributing to this project! 🎉 Your help keeps this project growing and improving. Below are the different ways you can contribute. Let’s get started! 🚀 -Open a new issue with **Request new bank** template, and fill in the information of the bank in the issue. -The template already asks for all the needed information. +--- -The data is updated daily using a tool called [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool). -If you are doing some hard code changes, please make sure it will not be overwritten by the merge tool. The source of truth is the JSON file and is used by the Merge Tool to load the initial data. +## 🏦 Adding a New Bank + +The list of banks is automatically updated daily using the [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool). + +However, if the tool cannot find the data for a specific bank, you can help by: +1. Opening a **Bug Report** issue. +2. Including all the necessary details about the bank, such as: + - Bank name + - Code + - Country or region + - Any additional relevant data + +We will manually add the bank to the JSON file and ensure it is included in future updates. ✅ + +--- + +## 🗑️ Removing a Bank + +If a bank needs to be removed (e.g., it no longer exists or merged with another), you can: +1. Open a **Bug Report** issue. +2. Include the following details: + - The name and code of the bank to be removed. + - The reason for its removal (e.g., discontinued, merged). + - Supporting evidence or links to verify the request. + +We’ll handle the removal manually in the JSON file and update the project accordingly. 🔄 + +--- + +## 🔍 Adding a New Source of Data + +1. Open an issue describing the new data source you'd like to add. +2. Include the following details: + - 📂 The type of data the source provides. + - 🔗 A link to the source (if applicable). + - 📜 Any requirements, licenses, or permissions to use the data. + +Make sure the source aligns with the project’s goals and standards. 🌟 + +--- + +## 🐞 Reporting a Bug/Problem + +1. Open an issue using the **Bug Report** template. +2. Include as much detail as possible, such as: + - ⚙️ Steps to reproduce the issue. + - 🖼️ Screenshots, error logs, or examples (if available). + - 📋 The expected vs. actual behavior. + +This helps us identify and fix the problem faster! 🚑 + +--- + +## 💡 Other Kinds of Contributions + +Do you have ideas or want to improve something else? +1. Open a new issue and describe your suggestion (e.g., documentation updates, new features, refactoring). +2. Be as detailed as possible so we can discuss and collaborate effectively. + +Your creativity is always welcome here! 🎨 + +--- + +## 🔧 Merge Tool: Key Information + +- This project uses [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) to manage and update the data daily. +- ⚠️ **Important**: The JSON file is the **source of truth**. If you're making code changes, ensure they don’t conflict with the MergeTool's updates. +- The MergeTool ensures the data is up-to-date and consistent across all parts of the project. + +--- + +Thank you for contributing and helping improve this project! Together, we’re building something amazing. 💪 +If you have any questions, feel free to open an issue or start a discussion. 😊 + +Happy contributing! 🚀 From 9485edb1ecbe9d344d620167b9d42f97ebb4a3b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:27:59 +0000 Subject: [PATCH 39/48] docs(contributor): contrib-readme-action has updated readme --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26fbe2f3..2701bb93 100644 --- a/README.md +++ b/README.md @@ -177,14 +177,14 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - guibranco + guibranco
Guilherme Branco Stracini
- raphaelcunha + raphaelcunha
Raphael Cunha
@@ -221,7 +221,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - pferreirafabricio + pferreirafabricio
Fabrício Pinto Ferreira
@@ -256,7 +256,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - leogregianin + leogregianin
Leonardo Gregianin
@@ -279,7 +279,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - victorbrandaao + victorbrandaao
Victor Leonardo Brandão
@@ -334,7 +334,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - github-actions[bot] + github-actions[bot]
github-actions[bot]
@@ -355,14 +355,14 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - stack-file[bot] + stack-file[bot]
stack-file[bot]
- codefactor-io[bot] + codefactor-io[bot]
codefactor-io[bot]
@@ -371,14 +371,14 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - deepsource-autofix[bot] + deepsource-autofix[bot]
deepsource-autofix[bot]
- deepsource-io[bot] + deepsource-io[bot]
deepsource-io[bot]
From 317f7ccccf18d01b59c69292359c625000f470f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:28:01 +0000 Subject: [PATCH 40/48] docs(contributor): contrib-readme-action has updated readme --- README.pt-br.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.pt-br.md b/README.pt-br.md index 4a01ec71..63efbe64 100644 --- a/README.pt-br.md +++ b/README.pt-br.md @@ -177,14 +177,14 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - guibranco + guibranco
Guilherme Branco Stracini
- raphaelcunha + raphaelcunha
Raphael Cunha
@@ -212,7 +212,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - Erick-Bueno + Erick-Bueno
Erick Bueno
@@ -221,7 +221,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - pferreirafabricio + pferreirafabricio
Fabrício Pinto Ferreira
@@ -256,7 +256,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - leogregianin + leogregianin
Leonardo Gregianin
@@ -265,7 +265,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - MauriciDmarc + MauriciDmarc
Maurici Dmarco
@@ -279,7 +279,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - victorbrandaao + victorbrandaao
Victor Leonardo Brandão
@@ -334,7 +334,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - github-actions[bot] + github-actions[bot]
github-actions[bot]
@@ -355,14 +355,14 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - stack-file[bot] + stack-file[bot]
stack-file[bot]
- codefactor-io[bot] + codefactor-io[bot]
codefactor-io[bot]
@@ -371,14 +371,14 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - deepsource-autofix[bot] + deepsource-autofix[bot]
deepsource-autofix[bot]
- deepsource-io[bot] + deepsource-io[bot]
deepsource-io[bot]
From 2bb00f2ca7cb3988174647a988bd6cf39eb9a08d Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Fri, 20 Dec 2024 12:08:09 +0000 Subject: [PATCH 41/48] Daily updates (bot) --- CHANGELOG.md | 7 +++++++ data/bancos.csv | 2 +- data/bancos.json | 6 +++--- data/bancos.md | 2 +- data/bancos.sql | 2 +- data/bancos.xml | 6 +++--- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e41e6ec2..299d77ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ## Changelog +### 2024-12-20 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Updated 1 bank + - 95 - BANCO TRAVELEX S.A. - 11.703.662/0001-44 + - **LongName** (STR): Travelex Banco de Câmbio S.A. **->** BANCO TRAVELEX S.A. + - **ShortName** (STR): TRAVELEX BANCO DE CÂMBIO S.A. **->** BANCO TRAVELEX S.A. + ### 2024-12-19 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Updated 2 banks diff --git a/data/bancos.csv b/data/bancos.csv index 5422ccb8..c0924b87 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -47,7 +47,7 @@ 092,12865507,12.865.507/0001-97,BRK S.A. Crédito Financiamento e Investimento,BRK S.A. CFI,RSFN,,,,,Não,Não,,,,,https://brk.com.br/,2010-07-01,,2021-05-05T09:11:12.7114795-03:00,2021-05-05T09:11:12.7114797-03:00 093,07945233,07.945.233/0001-06,PÓLOCRED SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E À EMPRESA DE PEQUENO PORTE LTDA.,POLOCRED SCMEPP LTDA.,RSFN,,DRCT,Sim,Não,Não,Não,Sim,Sim,,,https://www.polocred.com.br/,2010-11-09,2020-11-03 06:30:00,2021-05-05T09:11:12.7114642-03:00,2024-05-15T16:49:45.7497800+00:00 094,11758741,11.758.741/0001-52,Banco Finaxis S.A.,BANCO FINAXIS,RSFN,Banco Comercial,,Sim,Sim,Não,Não,Sim,Não,,,https://www.finaxis.com.br,2010-08-23,,2021-05-05T09:11:12.7114788-03:00,2024-05-15T16:49:45.7294369+00:00 -095,11703662,11.703.662/0001-44,Travelex Banco de Câmbio S.A.,TRAVELEX BANCO DE CÂMBIO S.A.,RSFN,Banco de Câmbio,DRCT,,,Não,Não,,,,,https://www.travelexbank.com.br,2010-06-22,2023-01-30 10:00:00,2021-05-05T09:11:12.7114742-03:00,2023-03-03T14:56:54.2246781+00:00 +095,11703662,11.703.662/0001-44,BANCO TRAVELEX S.A.,BANCO TRAVELEX S.A.,RSFN,Banco de Câmbio,DRCT,,,Não,Não,,,,,https://www.travelexbank.com.br,2010-06-22,2023-01-30 10:00:00,2021-05-05T09:11:12.7114742-03:00,2024-12-20T12:07:51.9201305+00:00 096,00997185,00.997.185/0001-50,Banco B3 S.A.,BCO B3 S.A.,RSFN,Banco Comercial,DRCT,Sim,Sim,Não,Não,Sim,Não,,,https://www.bmfbovespa.com.br/bancobmfbovespa/,2004-11-12,2023-09-11 11:00:00,2021-05-05T09:11:12.7113750-03:00,2024-05-15T16:49:45.7223453+00:00 097,04632856,04.632.856/0001-30,Credisis - Central de Cooperativas de Crédito Ltda.,CREDISIS - CENTRAL DE COOPERATIVAS DE CRÉDITO LTDA.,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,Banco folha e Destinatário,,https://credisis.com.br,2011-02-08,2020-11-03 06:30:00,2021-05-05T09:11:12.7114549-03:00,2024-05-15T16:49:45.7418689+00:00 098,78157146,78.157.146/0001-32,Credialiança Cooperativa de Crédito Rural,CREDIALIANÇA CCR,RSFN,,DRCT,Sim,Sim,Não,Não,,,,,https://site.credialianca.com.br,2011-01-18,2021-07-12 08:00:00,2021-05-05T09:11:12.7115449-03:00,2022-06-23T13:48:15.3594388+00:00 diff --git a/data/bancos.json b/data/bancos.json index c0efe980..edf00386 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -1253,8 +1253,8 @@ "COMPE": "095", "ISPB": "11703662", "Document": "11.703.662/0001-44", - "LongName": "Travelex Banco de Câmbio S.A.", - "ShortName": "TRAVELEX BANCO DE CÂMBIO S.A.", + "LongName": "BANCO TRAVELEX S.A.", + "ShortName": "BANCO TRAVELEX S.A.", "Network": "RSFN", "Type": "Banco de Câmbio", "PixType": "DRCT", @@ -1270,7 +1270,7 @@ "DateOperationStarted": "2010-06-22", "DatePixStarted": "2023-01-30 10:00:00", "DateRegistered": "2021-05-05T09:11:12.7114742-03:00", - "DateUpdated": "2023-03-03T14:56:54.2246781+00:00" + "DateUpdated": "2024-12-20T12:07:51.9201305+00:00" }, { "COMPE": "096", diff --git a/data/bancos.md b/data/bancos.md index 7ec430a7..e7d499ba 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -50,7 +50,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 092 | 12865507 | 12.865.507/0001-97 | BRK S.A. Crédito, Financiamento e Investimento | BRK S.A. CFI | RSFN | - | - | - | - | Não | Não | - | - | - | - | https://brk.com.br/ | 2010-07-01 | - | 2021-05-05T09:11:12.7114795-03:00 | 2021-05-05T09:11:12.7114797-03:00 093 | 07945233 | 07.945.233/0001-06 | PÓLOCRED SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E À EMPRESA DE PEQUENO PORTE LTDA. | POLOCRED SCMEPP LTDA. | RSFN | - | DRCT | Sim | Não | Não | Não | Sim | Sim | - | - | https://www.polocred.com.br/ | 2010-11-09 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114642-03:00 | 2024-05-15T16:49:45.7497800+00:00 094 | 11758741 | 11.758.741/0001-52 | Banco Finaxis S.A. | BANCO FINAXIS | RSFN | Banco Comercial | - | Sim | Sim | Não | Não | Sim | Não | - | - | https://www.finaxis.com.br | 2010-08-23 | - | 2021-05-05T09:11:12.7114788-03:00 | 2024-05-15T16:49:45.7294369+00:00 -095 | 11703662 | 11.703.662/0001-44 | Travelex Banco de Câmbio S.A. | TRAVELEX BANCO DE CÂMBIO S.A. | RSFN | Banco de Câmbio | DRCT | - | - | Não | Não | - | - | - | - | https://www.travelexbank.com.br | 2010-06-22 | 2023-01-30 10:00:00 | 2021-05-05T09:11:12.7114742-03:00 | 2023-03-03T14:56:54.2246781+00:00 +095 | 11703662 | 11.703.662/0001-44 | BANCO TRAVELEX S.A. | BANCO TRAVELEX S.A. | RSFN | Banco de Câmbio | DRCT | - | - | Não | Não | - | - | - | - | https://www.travelexbank.com.br | 2010-06-22 | 2023-01-30 10:00:00 | 2021-05-05T09:11:12.7114742-03:00 | 2024-12-20T12:07:51.9201305+00:00 096 | 00997185 | 00.997.185/0001-50 | Banco B3 S.A. | BCO B3 S.A. | RSFN | Banco Comercial | DRCT | Sim | Sim | Não | Não | Sim | Não | - | - | https://www.bmfbovespa.com.br/bancobmfbovespa/ | 2004-11-12 | 2023-09-11 11:00:00 | 2021-05-05T09:11:12.7113750-03:00 | 2024-05-15T16:49:45.7223453+00:00 097 | 04632856 | 04.632.856/0001-30 | Credisis - Central de Cooperativas de Crédito Ltda. | CREDISIS - CENTRAL DE COOPERATIVAS DE CRÉDITO LTDA. | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | Banco folha e Destinatário | - | https://credisis.com.br | 2011-02-08 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7114549-03:00 | 2024-05-15T16:49:45.7418689+00:00 098 | 78157146 | 78.157.146/0001-32 | Credialiança Cooperativa de Crédito Rural | CREDIALIANÇA CCR | RSFN | - | DRCT | Sim | Sim | Não | Não | - | - | - | - | https://site.credialianca.com.br | 2011-01-18 | 2021-07-12 08:00:00 | 2021-05-05T09:11:12.7115449-03:00 | 2022-06-23T13:48:15.3594388+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index 544a6eb6..2848c7e1 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -46,7 +46,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('092','12865507','12.865.507/0001-97','BRK S.A. Crédito, Financiamento e Investimento','BRK S.A. CFI',NULL,NULL,'RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://brk.com.br/','2010-07-01',NULL,'2021-05-05T09:11:12.7114795-03:00','2021-05-05T09:11:12.7114797-03:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('093','07945233','07.945.233/0001-06','PÓLOCRED SOCIEDADE DE CRÉDITO AO MICROEMPREENDEDOR E À EMPRESA DE PEQUENO PORTE LTDA.','POLOCRED SCMEPP LTDA.',NULL,'DRCT','RSFN',1,0,0,0,1,1,NULL,NULL,'https://www.polocred.com.br/','2010-11-09','2020-11-03 06:30:00','2021-05-05T09:11:12.7114642-03:00','2024-05-15T16:49:45.7497800+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('094','11758741','11.758.741/0001-52','Banco Finaxis S.A.','BANCO FINAXIS','Banco Comercial',NULL,'RSFN',1,1,0,0,1,0,NULL,NULL,'https://www.finaxis.com.br','2010-08-23',NULL,'2021-05-05T09:11:12.7114788-03:00','2024-05-15T16:49:45.7294369+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('095','11703662','11.703.662/0001-44','Travelex Banco de Câmbio S.A.','TRAVELEX BANCO DE CÂMBIO S.A.','Banco de Câmbio','DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.travelexbank.com.br','2010-06-22','2023-01-30 10:00:00','2021-05-05T09:11:12.7114742-03:00','2023-03-03T14:56:54.2246781+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('095','11703662','11.703.662/0001-44','BANCO TRAVELEX S.A.','BANCO TRAVELEX S.A.','Banco de Câmbio','DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'https://www.travelexbank.com.br','2010-06-22','2023-01-30 10:00:00','2021-05-05T09:11:12.7114742-03:00','2024-12-20T12:07:51.9201305+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('096','00997185','00.997.185/0001-50','Banco B3 S.A.','BCO B3 S.A.','Banco Comercial','DRCT','RSFN',1,1,0,0,1,0,NULL,NULL,'https://www.bmfbovespa.com.br/bancobmfbovespa/','2004-11-12','2023-09-11 11:00:00','2021-05-05T09:11:12.7113750-03:00','2024-05-15T16:49:45.7223453+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('097','04632856','04.632.856/0001-30','Credisis - Central de Cooperativas de Crédito Ltda.','CREDISIS - CENTRAL DE COOPERATIVAS DE CRÉDITO LTDA.',NULL,'DRCT','RSFN',1,1,0,0,1,1,'Banco folha e Destinatário',NULL,'https://credisis.com.br','2011-02-08','2020-11-03 06:30:00','2021-05-05T09:11:12.7114549-03:00','2024-05-15T16:49:45.7418689+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('098','78157146','78.157.146/0001-32','Credialiança Cooperativa de Crédito Rural','CREDIALIANÇA CCR',NULL,'DRCT','RSFN',1,1,0,0,NULL,NULL,NULL,NULL,'https://site.credialianca.com.br','2011-01-18','2021-07-12 08:00:00','2021-05-05T09:11:12.7115449-03:00','2022-06-23T13:48:15.3594388+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 37a4b5ba..6f0cd98a 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -1130,8 +1130,8 @@ 095 11703662 11.703.662/0001-44 - Travelex Banco de Câmbio S.A. - TRAVELEX BANCO DE CÂMBIO S.A. + BANCO TRAVELEX S.A. + BANCO TRAVELEX S.A. RSFN Banco de Câmbio DRCT @@ -1145,7 +1145,7 @@ 2010-06-22 2023-01-30 10:00:00 2021-05-05T09:11:12.7114742-03:00 - 2023-03-03T14:56:54.2246781Z + 2024-12-20T12:07:51.9201305Z
096 From 68946afc8ba101a37e596b6ac1b09f37835bb6b3 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Sat, 21 Dec 2024 12:07:41 +0000 Subject: [PATCH 42/48] Daily updates (bot) --- CHANGELOG.md | 7 +++++++ data/bancos.csv | 2 +- data/bancos.json | 6 +++--- data/bancos.md | 2 +- data/bancos.sql | 2 +- data/bancos.xml | 6 +++--- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 299d77ba..a9ca7e10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ## Changelog +### 2024-12-21 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) + +- Updated 1 bank + - 659 - ONEKEY PAYMENTS IP S.A. - 35.210.410/0001-41 + - **PixType** (SPI): IDRT **->** DRCT + - **DatePixStarted** (SPI): 2022-09-12 11:04:30 **->** 2024-12-20 10:10:00 + ### 2024-12-20 - [MergeTool](https://github.com/guibranco/BancosBrasileiros-MergeTool) - Updated 1 bank diff --git a/data/bancos.csv b/data/bancos.csv index c0924b87..1ec803a3 100644 --- a/data/bancos.csv +++ b/data/bancos.csv @@ -405,7 +405,7 @@ 653,61024352,61.024.352/0001-71,BANCO VOITER S.A.,BANCO VOITER,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Não,Sim,Não,,,https://www.bip.b.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115280-03:00,2024-05-15T16:49:45.7369308+00:00 654,92874270,92.874.270/0001-40,BANCO DIGIMAIS S.A.,BCO DIGIMAIS S.A.,RSFN,,DRCT,Sim,Sim,Não,Não,Sim,Sim,,Capital de Giro; Consignado; Pessoal; Troca de Modalidade; Veículos,,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115485-03:00,2024-05-15T16:49:45.7275492+00:00 655,59588111,59.588.111/0001-03,Banco Votorantim S.A.,BCO VOTORANTIM S.A.,RSFN,Banco Múltiplo,DRCT,Sim,Sim,Não,Sim,Sim,Não,Banco folha e Destinatário,Capital de Giro; Cheque Especial; Consignado; Imobiliário; Outros Créditos; Pessoal; Troca de Modalidade; Veículos,https://www.bancovotorantim.com.br,2002-04-22,2020-11-03 06:30:00,2021-05-05T09:11:12.7115243-03:00,2024-05-15T16:49:45.7373940+00:00 -659,35210410,35.210.410/0001-41,ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA,ONEKEY PAYMENTS IP S.A.,RSFN,,IDRT,,,Não,Não,,,,,,2024-09-30,2022-09-12 11:04:30,2024-09-24T12:07:36.7070372+00:00,2024-09-24T12:07:35.7979065+00:00 +659,35210410,35.210.410/0001-41,ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA,ONEKEY PAYMENTS IP S.A.,RSFN,,DRCT,,,Não,Não,,,,,,2024-09-30,2024-12-20 10:10:00,2024-09-24T12:07:36.7070372+00:00,2024-12-21T12:07:25.4739620+00:00 660,34471744,34.471.744/0001-06,PAGME INSTITUIÇÃO DE PAGAMENTO LTDA.,PAGME IP LTDA,RSFN,,IDRT,,,Não,Não,,,,,,2024-10-22,2023-09-19 15:07:18,2024-10-16T12:07:56.4868924+00:00,2024-10-16T12:07:55.6307764+00:00 661,55428859,55.428.859/0001-98,FREEX CORRETORA DE CAMBIO S.A.,FREEX CC S.A.,Internet,,,,,Não,Não,,,,,,2024-09-11,,2024-09-05T12:33:05.3563736+00:00,2024-09-05T12:33:05.3564037+00:00 662,32708748,32.708.748/0001-30,WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.,WE PAY OUT IP LTDA.,RSFN,,DRCT,,,Não,Não,,,,,,2024-11-25,2024-12-09 11:10:00,2024-11-20T12:08:13.9188247+00:00,2024-12-10T12:09:00.0743930+00:00 diff --git a/data/bancos.json b/data/bancos.json index edf00386..43ef85f3 100644 --- a/data/bancos.json +++ b/data/bancos.json @@ -9907,7 +9907,7 @@ "ShortName": "ONEKEY PAYMENTS IP S.A.", "Network": "RSFN", "Type": null, - "PixType": "IDRT", + "PixType": "DRCT", "Charge": null, "CreditDocument": null, "LegalCheque": false, @@ -9918,9 +9918,9 @@ "Products": null, "Url": null, "DateOperationStarted": "2024-09-30", - "DatePixStarted": "2022-09-12 11:04:30", + "DatePixStarted": "2024-12-20 10:10:00", "DateRegistered": "2024-09-24T12:07:36.7070372+00:00", - "DateUpdated": "2024-09-24T12:07:35.7979065+00:00" + "DateUpdated": "2024-12-21T12:07:25.473962+00:00" }, { "COMPE": "660", diff --git a/data/bancos.md b/data/bancos.md index e7d499ba..00be926e 100644 --- a/data/bancos.md +++ b/data/bancos.md @@ -408,7 +408,7 @@ COMPE | ISPB | Document | Long Name | Short Name | Network | Type | PIX Type | C 653 | 61024352 | 61.024.352/0001-71 | BANCO VOITER S.A. | BANCO VOITER | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Não | Sim | Não | - | - | https://www.bip.b.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115280-03:00 | 2024-05-15T16:49:45.7369308+00:00 654 | 92874270 | 92.874.270/0001-40 | BANCO DIGIMAIS S.A. | BCO DIGIMAIS S.A. | RSFN | - | DRCT | Sim | Sim | Não | Não | Sim | Sim | - | Capital de Giro,Consignado,Pessoal,Troca de Modalidade,Veículos | - | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115485-03:00 | 2024-05-15T16:49:45.7275492+00:00 655 | 59588111 | 59.588.111/0001-03 | Banco Votorantim S.A. | BCO VOTORANTIM S.A. | RSFN | Banco Múltiplo | DRCT | Sim | Sim | Não | Sim | Sim | Não | Banco folha e Destinatário | Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos | https://www.bancovotorantim.com.br | 2002-04-22 | 2020-11-03 06:30:00 | 2021-05-05T09:11:12.7115243-03:00 | 2024-05-15T16:49:45.7373940+00:00 -659 | 35210410 | 35.210.410/0001-41 | ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA | ONEKEY PAYMENTS IP S.A. | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | 2022-09-12 11:04:30 | 2024-09-24T12:07:36.7070372+00:00 | 2024-09-24T12:07:35.7979065+00:00 +659 | 35210410 | 35.210.410/0001-41 | ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA | ONEKEY PAYMENTS IP S.A. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-09-30 | 2024-12-20 10:10:00 | 2024-09-24T12:07:36.7070372+00:00 | 2024-12-21T12:07:25.4739620+00:00 660 | 34471744 | 34.471.744/0001-06 | PAGME INSTITUIÇÃO DE PAGAMENTO LTDA. | PAGME IP LTDA | RSFN | - | IDRT | - | - | Não | Não | - | - | - | - | - | 2024-10-22 | 2023-09-19 15:07:18 | 2024-10-16T12:07:56.4868924+00:00 | 2024-10-16T12:07:55.6307764+00:00 661 | 55428859 | 55.428.859/0001-98 | FREEX CORRETORA DE CAMBIO S.A. | FREEX CC S.A. | Internet | - | - | - | - | Não | Não | - | - | - | - | - | 2024-09-11 | - | 2024-09-05T12:33:05.3563736+00:00 | 2024-09-05T12:33:05.3564037+00:00 662 | 32708748 | 32.708.748/0001-30 | WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA. | WE PAY OUT IP LTDA. | RSFN | - | DRCT | - | - | Não | Não | - | - | - | - | - | 2024-11-25 | 2024-12-09 11:10:00 | 2024-11-20T12:08:13.9188247+00:00 | 2024-12-10T12:09:00.0743930+00:00 diff --git a/data/bancos.sql b/data/bancos.sql index 2848c7e1..72e15352 100644 --- a/data/bancos.sql +++ b/data/bancos.sql @@ -404,7 +404,7 @@ INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,C INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('653','61024352','61.024.352/0001-71','BANCO VOITER S.A.','BANCO VOITER','Banco Múltiplo','DRCT','RSFN',1,1,0,0,1,0,NULL,NULL,'https://www.bip.b.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115280-03:00','2024-05-15T16:49:45.7369308+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('654','92874270','92.874.270/0001-40','BANCO DIGIMAIS S.A.','BCO DIGIMAIS S.A.',NULL,'DRCT','RSFN',1,1,0,0,1,1,NULL,'Capital de Giro,Consignado,Pessoal,Troca de Modalidade,Veículos',NULL,'2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115485-03:00','2024-05-15T16:49:45.7275492+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('655','59588111','59.588.111/0001-03','Banco Votorantim S.A.','BCO VOTORANTIM S.A.','Banco Múltiplo','DRCT','RSFN',1,1,0,1,1,0,'Banco folha e Destinatário','Capital de Giro,Cheque Especial,Consignado,Imobiliário,Outros Créditos,Pessoal,Troca de Modalidade,Veículos','https://www.bancovotorantim.com.br','2002-04-22','2020-11-03 06:30:00','2021-05-05T09:11:12.7115243-03:00','2024-05-15T16:49:45.7373940+00:00'); -INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('659','35210410','35.210.410/0001-41','ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA','ONEKEY PAYMENTS IP S.A.',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30','2022-09-12 11:04:30','2024-09-24T12:07:36.7070372+00:00','2024-09-24T12:07:35.7979065+00:00'); +INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('659','35210410','35.210.410/0001-41','ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA','ONEKEY PAYMENTS IP S.A.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-30','2024-12-20 10:10:00','2024-09-24T12:07:36.7070372+00:00','2024-12-21T12:07:25.4739620+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('660','34471744','34.471.744/0001-06','PAGME INSTITUIÇÃO DE PAGAMENTO LTDA.','PAGME IP LTDA',NULL,'IDRT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-10-22','2023-09-19 15:07:18','2024-10-16T12:07:56.4868924+00:00','2024-10-16T12:07:55.6307764+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('661','55428859','55.428.859/0001-98','FREEX CORRETORA DE CAMBIO S.A.','FREEX CC S.A.',NULL,NULL,'Internet',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-09-11',NULL,'2024-09-05T12:33:05.3563736+00:00','2024-09-05T12:33:05.3564037+00:00'); INSERT INTO Banks (COMPE,ISPB,Document,LongName,ShortName,Network,Type,PixType,Charge,CreditDocument,LegalCheque,DetectaFlow,PCR,PCRP,SalaryPortability,Products,Url,DateOperationStarted,DatePixStarted,DateRegistered,DateUpdated) VALUES('662','32708748','32.708.748/0001-30','WE PAY OUT INSTITUICAO DE PAGAMENTO LTDA.','WE PAY OUT IP LTDA.',NULL,'DRCT','RSFN',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'2024-11-25','2024-12-09 11:10:00','2024-11-20T12:08:13.9188247+00:00','2024-12-10T12:09:00.0743930+00:00'); diff --git a/data/bancos.xml b/data/bancos.xml index 6f0cd98a..4591259e 100644 --- a/data/bancos.xml +++ b/data/bancos.xml @@ -8517,7 +8517,7 @@ ONEKEY PAYMENTS INSTITUICAO DE PAGAMENTO SA ONEKEY PAYMENTS IP S.A. RSFN - IDRT + DRCT false @@ -8526,9 +8526,9 @@ 2024-09-30 - 2022-09-12 11:04:30 + 2024-12-20 10:10:00 2024-09-24T12:07:36.7070372Z - 2024-09-24T12:07:35.7979065Z + 2024-12-21T12:07:25.473962Z 660 From 3fdd7746a15af10627464a8a8eaa72a44c927df2 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Sat, 21 Dec 2024 20:00:48 +0000 Subject: [PATCH 43/48] fix: upgrade bancos-brasileiros from 6.1.2 to 6.1.4 (#611) Snyk has created this PR to upgrade bancos-brasileiros from 6.1.2 to 6.1.4. See this package in npm: bancos-brasileiros See this project in Snyk: https://app.snyk.io/org/guibranco/project/337dc2ee-ac4c-4ec7-8f33-7fddb26040de?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- examples/emberjs/package-lock.json | 14 +++++++------- examples/emberjs/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/emberjs/package-lock.json b/examples/emberjs/package-lock.json index dc2cf99e..deb06baa 100644 --- a/examples/emberjs/package-lock.json +++ b/examples/emberjs/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.0", "license": "MIT", "dependencies": { - "bancos-brasileiros": "^6.1.2" + "bancos-brasileiros": "^6.1.4" }, "devDependencies": { "@ember/optional-features": "^2.0.0", @@ -4880,9 +4880,9 @@ "dev": true }, "node_modules/bancos-brasileiros": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.1.2.tgz", - "integrity": "sha512-q8P4Glr1TwNtGJsHu3CjW2cIUMs3QjkXZGukdUbklaGhhnGPc5aHt36ybL2hxAZ9I9NDldTG8r0AhKLS0bB6Ew==", + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.1.4.tgz", + "integrity": "sha512-6UVr37lr32OQshtPta2CZfSbphNDY+2ekYZ/7B+r6nsOczbNz5NlVtSUwCq7em+8FBLNw6BaWFeNMBUg9CLgEA==", "license": "UNLICENSED" }, "node_modules/base": { @@ -24915,9 +24915,9 @@ "dev": true }, "bancos-brasileiros": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.1.2.tgz", - "integrity": "sha512-q8P4Glr1TwNtGJsHu3CjW2cIUMs3QjkXZGukdUbklaGhhnGPc5aHt36ybL2hxAZ9I9NDldTG8r0AhKLS0bB6Ew==" + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/bancos-brasileiros/-/bancos-brasileiros-6.1.4.tgz", + "integrity": "sha512-6UVr37lr32OQshtPta2CZfSbphNDY+2ekYZ/7B+r6nsOczbNz5NlVtSUwCq7em+8FBLNw6BaWFeNMBUg9CLgEA==" }, "base": { "version": "0.11.2", diff --git a/examples/emberjs/package.json b/examples/emberjs/package.json index 68500d4d..dc7b8d9c 100644 --- a/examples/emberjs/package.json +++ b/examples/emberjs/package.json @@ -67,6 +67,6 @@ "edition": "octane" }, "dependencies": { - "bancos-brasileiros": "^6.1.2" + "bancos-brasileiros": "^6.1.4" } } From 4d3563f0d6e777f48fa2a2795bbcae943b313a03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:00:59 +0000 Subject: [PATCH 44/48] docs(contributor): contrib-readme-action has updated readme --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 2701bb93..29092cbb 100644 --- a/README.md +++ b/README.md @@ -177,42 +177,42 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - guibranco + guibranco
Guilherme Branco Stracini
- raphaelcunha + raphaelcunha
Raphael Cunha
- Baldini + Baldini
Guilherme Baldini
- BrunoM90 + BrunoM90
Null
- sahalhes + sahalhes
E S Sahal Hussain
- Erick-Bueno + Erick-Bueno
Erick Bueno
@@ -221,42 +221,42 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - pferreirafabricio + pferreirafabricio
Fabrício Pinto Ferreira
- Guillergood + Guillergood
Guillermo Bueno Vargas
- iurisilvio + iurisilvio
Iuri De Silvio
- jesobreira + jesobreira
Jefrey Sobreira Santos
- joaovaladares + joaovaladares
João V. Valadares
- leogregianin + leogregianin
Leonardo Gregianin
@@ -265,42 +265,42 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - MauriciDmarc + MauriciDmarc
Maurici Dmarco
- rafaeldomi + rafaeldomi
Rafael Domiciano
- victorbrandaao + victorbrandaao
Victor Leonardo Brandão
- AmolKumarGupta + AmolKumarGupta
Amol
- luisccf + luisccf
Luis Carlos Cardoso
- rodrigondec + rodrigondec
Rodrigo Castro
@@ -309,7 +309,7 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - vduggen + vduggen
Vitor Duggen
@@ -334,35 +334,35 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - github-actions[bot] + github-actions[bot]
github-actions[bot]
- dependabot[bot] + dependabot[bot]
dependabot[bot]
- penify-dev[bot] + penify-dev[bot]
penify-dev[bot]
- stack-file[bot] + stack-file[bot]
stack-file[bot]
- codefactor-io[bot] + codefactor-io[bot]
codefactor-io[bot]
@@ -371,21 +371,21 @@ The data is automatically updated daily using a [tool](https://github.com/guibra - deepsource-autofix[bot] + deepsource-autofix[bot]
deepsource-autofix[bot]
- deepsource-io[bot] + deepsource-io[bot]
deepsource-io[bot]
- gitauto-ai[bot] + gitauto-ai[bot]
gitauto-ai[bot]
From b436f6154d3b188b033e9cf1db80647fe046c38c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:01:01 +0000 Subject: [PATCH 45/48] docs(contributor): contrib-readme-action has updated readme --- README.pt-br.md | 54 ++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.pt-br.md b/README.pt-br.md index 63efbe64..cdffb74e 100644 --- a/README.pt-br.md +++ b/README.pt-br.md @@ -177,42 +177,42 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - guibranco + guibranco
Guilherme Branco Stracini
- raphaelcunha + raphaelcunha
Raphael Cunha
- Baldini + Baldini
Guilherme Baldini
- BrunoM90 + BrunoM90
Null
- sahalhes + sahalhes
E S Sahal Hussain
- Erick-Bueno + Erick-Bueno
Erick Bueno
@@ -221,42 +221,42 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - pferreirafabricio + pferreirafabricio
Fabrício Pinto Ferreira
- Guillergood + Guillergood
Guillermo Bueno Vargas
- iurisilvio + iurisilvio
Iuri De Silvio
- jesobreira + jesobreira
Jefrey Sobreira Santos
- joaovaladares + joaovaladares
João V. Valadares
- leogregianin + leogregianin
Leonardo Gregianin
@@ -265,42 +265,42 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - MauriciDmarc + MauriciDmarc
Maurici Dmarco
- rafaeldomi + rafaeldomi
Rafael Domiciano
- victorbrandaao + victorbrandaao
Victor Leonardo Brandão
- AmolKumarGupta + AmolKumarGupta
Amol
- luisccf + luisccf
Luis Carlos Cardoso
- rodrigondec + rodrigondec
Rodrigo Castro
@@ -309,7 +309,7 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - vduggen + vduggen
Vitor Duggen
@@ -334,35 +334,35 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - github-actions[bot] + github-actions[bot]
github-actions[bot]
- dependabot[bot] + dependabot[bot]
dependabot[bot]
- penify-dev[bot] + penify-dev[bot]
penify-dev[bot]
- stack-file[bot] + stack-file[bot]
stack-file[bot]
- codefactor-io[bot] + codefactor-io[bot]
codefactor-io[bot]
@@ -371,21 +371,21 @@ Os dados são atualizados diariamente de forma automática por meio de uma [ferr - deepsource-autofix[bot] + deepsource-autofix[bot]
deepsource-autofix[bot]
- deepsource-io[bot] + deepsource-io[bot]
deepsource-io[bot]
- gitauto-ai[bot] + gitauto-ai[bot]
gitauto-ai[bot]
From d13fc5153b2aded8762612ca9008dfc55295cac0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:51:49 +0000 Subject: [PATCH 46/48] build(deps): bump sonarsource/sonarqube-scan-action from 4.1.0 to 4.2.1 (#615) Bumps [sonarsource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) from 4.1.0 to 4.2.1. - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v4.1.0...v4.2.1) --- updated-dependencies: - dependency-name: sonarsource/sonarqube-scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/sonar-cloud.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar-cloud.yml b/.github/workflows/sonar-cloud.yml index 3318110b..dc504965 100644 --- a/.github/workflows/sonar-cloud.yml +++ b/.github/workflows/sonar-cloud.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - name: SonarCloud Scan - uses: sonarsource/sonarqube-scan-action@v4.1.0 + uses: sonarsource/sonarqube-scan-action@v4.2.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 22ab92179501690cede3c13cd8961749e52ed23c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 16:03:37 +0000 Subject: [PATCH 47/48] build(deps): bump lycheeverse/lychee-action from 2.1.0 to 2.2.0 (#614) Bumps [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) from 2.1.0 to 2.2.0. - [Release notes](https://github.com/lycheeverse/lychee-action/releases) - [Commits](https://github.com/lycheeverse/lychee-action/compare/v2.1.0...v2.2.0) --- updated-dependencies: - dependency-name: lycheeverse/lychee-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: gstraccini[bot] <150967461+gstraccini[bot]@users.noreply.github.com> --- .github/workflows/link-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index 4875d467..25e8a14c 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -43,7 +43,7 @@ jobs: sudo wg-quick up ./wg0.conf - name: Run lychee - uses: lycheeverse/lychee-action@v2.1.0 + uses: lycheeverse/lychee-action@v2.2.0 id: lychee with: args: "--base . --cache --max-cache-age 1d ." From 0ba1e5514ceec3bd151a5656fabdd419b248768c Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 02:27:20 +0000 Subject: [PATCH 48/48] GitAuto: [FEATURE] Include JSON file in GitHub release files (#616) * Update appveyor.yml * Update appveyor.yml --------- Co-authored-by: gitauto-ai[bot] <161652217+gitauto-ai[bot]@users.noreply.github.com> Co-authored-by: Guilherme Branco Stracini --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index e12c24f6..2c61cf87 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -80,6 +80,9 @@ build_script: artifacts: - path: '**\*nupkg' name: Package + +- path: 'data/bancos.json' + name: Data deploy: - provider: NuGet