You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3128 lines
709 KiB
3128 lines
709 KiB
{ |
|
"cells": [ |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import hashlib\n", |
|
"\n", |
|
"# Input string\n", |
|
"text = \"22/05/2024\" + \"IFD YADDA YADDA\" + \"58,00\" + \"0,00\"\n", |
|
"\n", |
|
"# Create SHA-256 hash\n", |
|
"sha256_hash = hashlib.sha256(text.encode()).hexdigest()\n", |
|
"print(\"SHA-256 Hash:\", sha256_hash)\n", |
|
"\n", |
|
"# MD5 hash (128-bit)\n", |
|
"md5_hash = hashlib.md5(text.encode()).hexdigest()\n", |
|
"print(\"MD5 Hash:\", md5_hash)\n", |
|
"\n", |
|
"# SHA-1 hash (160-bit)\n", |
|
"sha1_hash = hashlib.sha1(text.encode()).hexdigest()\n", |
|
"print(\"SHA-1 Hash:\", sha1_hash)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"test_file = 'OUROCARD_VISA_INFINITE-Ago_24.txt'" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"with open('./documents/OUROCARD_VISA_INFINITE-Ago_24.txt', 'r', encoding='latin') as reader:\n", |
|
" data = reader.readlines()\n", |
|
" for line in data:\n", |
|
" print(line)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import re\n", |
|
"\n", |
|
"# Open the text file\n", |
|
"with open('OUROCARD_VISA_INFINITE-Ago_24.txt', 'r') as file_name:\n", |
|
" # Read the contents of the file\n", |
|
" contents = file_name.read()\n", |
|
"\n", |
|
"# Define the regex pattern to match\n", |
|
"pattern = r'\\d{2}\\.\\d{2}\\.\\d{4}.{23}.{14}.{2}\\s*\\d+,\\d{2}\\s*\\d+,\\d{2}'\n", |
|
"\n", |
|
"# Iterate over the lines that match the pattern\n", |
|
"for matches in re.finditer(pattern, contents):\n", |
|
" print(matches.group())" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import re\n", |
|
"\n", |
|
"# Open the text file\n", |
|
"with open('./documents/OUROCARD_VISA_INFINITE-Ago_24.txt', 'r', encoding=\"latin\") as file_name:\n", |
|
" # Read the contents of the file\n", |
|
" contents = file_name.read()\n", |
|
"\n", |
|
"# Define the regex pattern to match\n", |
|
"pattern = r\"\\s\\d\\s?-\\s?([A-Z]+)\"\n", |
|
"\n", |
|
"# Iterate over the lines that match the pattern\n", |
|
"for matches in re.finditer(pattern, contents):\n", |
|
" print(matches.group())" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import re\n", |
|
"\n", |
|
"# Open the text file\n", |
|
"with open('OUROCARD_VISA_INFINITE-Ago_24.txt', 'r') as file_name:\n", |
|
" # Read the contents of the file\n", |
|
" contents = file_name.read()\n", |
|
"\n", |
|
"# Define the regex patterns\n", |
|
"dan_pattern = r'*DANIEL.*'\n", |
|
"iza_pattern = r'.*IZABELY.*'\n", |
|
"line_pattern = r'\\d{2}\\.\\d{2}\\.\\d{4}.{23}.{14}.{2}\\s*\\d+,\\d{2}\\s*\\d+,\\d{2}'\n", |
|
"\n", |
|
"# Iterate over the lines that match the pattern\n", |
|
"for matches in re.finditer(line_pattern, contents):\n", |
|
" print(matches.group())\n" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# Open the text file\n", |
|
"with open('table-test.txt', 'r') as file_name:\n", |
|
" # Read the contents of the file\n", |
|
" contents = file_name.readlines()\n", |
|
"\n", |
|
"# Initialize lists to store the lines under each table\n", |
|
"table_a_lines = []\n", |
|
"table_b_lines = []\n", |
|
"\n", |
|
"# Flag to determine which table section we are in\n", |
|
"current_table = None\n", |
|
"\n", |
|
"# Iterate over the lines in the file\n", |
|
"for line in contents:\n", |
|
" line = line.strip() # Remove leading and trailing whitespace\n", |
|
"\n", |
|
" # Check for TABLEA and TABLEB\n", |
|
" if line == 'TABLEA':\n", |
|
" current_table = 'TABLEA'\n", |
|
" elif line == 'TABLEB':\n", |
|
" current_table = 'TABLEB'\n", |
|
" else:\n", |
|
" # Add lines to the appropriate list based on the current table\n", |
|
" if current_table == 'TABLEA':\n", |
|
" table_a_lines.append(line)\n", |
|
" elif current_table == 'TABLEB':\n", |
|
" table_b_lines.append(line)\n", |
|
"\n", |
|
"# Print the results\n", |
|
"print('Lines under TABLEA:')\n", |
|
"for data in table_a_lines:\n", |
|
" print(data)\n", |
|
"\n", |
|
"print('\\nLines under TABLEB:')\n", |
|
"for data in table_b_lines:\n", |
|
" print(data)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import re\n", |
|
"from datetime import date, datetime\n", |
|
"import locale\n", |
|
"\n", |
|
"locale.setlocale(locale.LC_ALL, 'pt_BR.UTF-8')\n", |
|
"\n", |
|
"# Open the text file\n", |
|
"with open('OUROCARD_VISA_INFINITE-Ago_24.txt', 'r', encoding='latin') as file_name:\n", |
|
" # Read the contents of the file\n", |
|
" contents = file_name.readlines()\n", |
|
"\n", |
|
"# Define the regex patterns\n", |
|
"dan_pattern = r'1 - DANIEL.*'\n", |
|
"iza_pattern = r'4 - IZABELY.*'\n", |
|
"line_pattern = r'\\d{2}\\.\\d{2}\\.\\d{4}.{23}.{14}.{2}\\s*\\d+,\\d{2}\\s*\\d+,\\d{2}'\n", |
|
"line_group_pattern = r'(\\d{2})\\.(\\d{2})\\.(\\d{4})(.{23})(.{14})(.{2})(\\s*\\d+,\\d{2})(\\s*\\d+,\\d{2})'\n", |
|
"\n", |
|
"# Lists\n", |
|
"list_dan = []\n", |
|
"list_iza = []\n", |
|
"current_list = None\n", |
|
"\n", |
|
"insert_bulk = []\n", |
|
"\n", |
|
"# Iterate all lines\n", |
|
"for line in contents:\n", |
|
" line = line.strip()\n", |
|
" if re.match(dan_pattern, line):\n", |
|
" current_list = 'list_dan'\n", |
|
" print('found Dan')\n", |
|
" elif re.match(iza_pattern, line):\n", |
|
" current_list = 'list_iza'\n", |
|
" print('found Iza')\n", |
|
" else:\n", |
|
" if re.match(line_pattern, line):\n", |
|
" if current_list == 'list_dan':\n", |
|
" print(\"dan\", line)\n", |
|
" list_dan.append(line)\n", |
|
" if current_list == 'list_iza':\n", |
|
" print(\"iza\", line)\n", |
|
" list_iza.append(line)\n", |
|
"\n", |
|
"print('list_dan - tuples for insert')\n", |
|
"for item in list_dan:\n", |
|
" matches = re.search(line_group_pattern, item)\n", |
|
" tTdate = str(date(int(matches.group(3)), int(matches.group(2)), int(matches.group(1))))\n", |
|
" tAccount = 1\n", |
|
" tMemo = matches.group(4)\n", |
|
" tCity = matches.group(5)\n", |
|
" tCountry = matches.group(6)\n", |
|
" tOutflow = matches.group(7).strip().replace(',', '.')\n", |
|
" tInflow = matches.group(8).strip().replace(',', '.')\n", |
|
" tOwner = 1\n", |
|
" tInstallments = 1\n", |
|
" tCreated = str(datetime.now(tz=None))\n", |
|
" tUpdated = None\n", |
|
" insert_bulk.append(( tTdate, tAccount, tMemo, tCity, tCountry, tOutflow, tInflow, tOwner, tInstallments, tCreated, tUpdated ))\n", |
|
"\n", |
|
"print('list_dan - tuples for insert')\n", |
|
"for item in list_iza:\n", |
|
" matches = re.search(line_group_pattern, item)\n", |
|
" tTdate = str(date(int(matches.group(3)), int(matches.group(2)), int(matches.group(1))))\n", |
|
" tAccount = 1\n", |
|
" tMemo = matches.group(4)\n", |
|
" tCity = matches.group(5)\n", |
|
" tCountry = matches.group(6)\n", |
|
" tOutflow = matches.group(7).strip().replace(',', '.')\n", |
|
" tInflow = matches.group(8).strip().replace(',', '.')\n", |
|
" tOwner = 2\n", |
|
" tInstallments = 1\n", |
|
" tCreated = str(datetime.now(tz=None))\n", |
|
" tUpdated = None\n", |
|
" insert_bulk.append(( tTdate, tAccount, tMemo, tCity, tCountry, tOutflow, tInflow, tOwner, tInstallments, tCreated, tUpdated ))\n" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"def logic_test(input: str = None):\n", |
|
" yadda = \"yadda\"\n", |
|
" return input or yadda\n", |
|
"\n", |
|
"logic_test()" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"dictTest = {\n", |
|
" \"owner1\": {\n", |
|
" \"owner_label\": \"foo\",\n", |
|
" \"owner_id\": 1,\n", |
|
" \"list1\": [\"thingies, thingies, 42\"],\n", |
|
" },\n", |
|
" \"owner2\": {\n", |
|
" \"owner_label\": \"bar\",\n", |
|
" \"owner_id\": 2,\n", |
|
" \"list1\": [\"thingies, thingies, 42\"],\n", |
|
" },\n", |
|
"}\n", |
|
"\n", |
|
"for owner in dictTest:\n", |
|
" print(dictTest[owner][\"owner_id\"], dictTest[owner][\"owner_label\"])\n", |
|
" for item in dictTest[owner][\"list1\"]:\n", |
|
" print(item)\n", |
|
"\n", |
|
"dictTest[\"owner1\"][\"owner_label\"] = \"yadda\"\n", |
|
"\n", |
|
"for owner in dictTest:\n", |
|
" print(dictTest[owner][\"owner_id\"], dictTest[owner][\"owner_label\"])\n", |
|
" for item in dictTest[owner][\"list1\"]:\n", |
|
" print(item)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"param1 = \"foo\"\n", |
|
"param2 = \"bar\"\n", |
|
"testy = {}\n", |
|
"testy[param1] = {}\n", |
|
"testy[param1][param2] = [\"what\", \"when\", \"why\"]\n", |
|
"testy[param1][\"number\"] = 1\n", |
|
"\n", |
|
"print(testy)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"bigDict = {\n", |
|
" \"list_daniel\": {\n", |
|
" \"owner_name\": \"DANIEL\",\n", |
|
" \"owner_id\": 1,\n", |
|
" \"tlist\": [\n", |
|
" \"25.07.2024PGTO DEBITO CONTA 8611 000006025 200211 -24.420,24 0,00\",\n", |
|
" \"15.07.2024NEW EMPAR EMPREENDIMENTCORUMBA DE GO BR 10,00 0,00\",\n", |
|
" \"14.07.2024NAZO SUSHI BAR BRASILIA BR 446,22 0,00\",\n", |
|
" \"18.07.2024IFD*IFOOD.COM AGENCIA DOsasco BR 12,90 0,00\",\n", |
|
" \"19.07.2024IFD*RC MELO COMERCIO D BRASILIA BR 138,30 0,00\",\n", |
|
" \"21.07.2024GRUPO FARTURA DE HORTI BRASILIA BR 105,79 0,00\",\n", |
|
" \"20.07.2024IFD*JL COMERCIO VAREJISBRASILIA BR 134,70 0,00\",\n", |
|
" \"22.07.2024MURAKAMI BRASILIA BR 55,90 0,00\",\n", |
|
" \"22.07.2024ZP *CANTINAGOODLANCHEV Brasilia BR 8,40 0,00\",\n", |
|
" \"23.07.2024CANTINA E CIA BRASILIA BR 10,00 0,00\",\n", |
|
" \"25.07.2024CANTINA E CIA BRASILIA BR 3,50 0,00\",\n", |
|
" \"24.07.2024IFD*NFE COMERCIO DE ALIBRASILIA BR 101,89 0,00\",\n", |
|
" \"27.07.2024BENITA PANINOTECA BRASILIA BR 156,80 0,00\",\n", |
|
" \"26.07.2024IFD*BSQUARE PIZZA BURGEBRASILIA BR 123,99 0,00\",\n", |
|
" \"04.08.2024IFD*RC MELO COMERCIO DEBRASILIA BR 103,29 0,00\",\n", |
|
" \"06.08.2024CANTINA E CIA BRASILIA BR 6,00 0,00\",\n", |
|
" \"06.08.2024ZP *CANTINAGOODLANCHEV Brasilia BR 210,00 0,00\",\n", |
|
" \"07.08.2024IFD*BSQUARE PIZZA BURGEBRASILIA BR 232,99 0,00\",\n", |
|
" \"22.07.2024DROGASIL 2067 BRASILIA BR 204,99 0,00\",\n", |
|
" \"22.07.2024REDE BRASIL DRUGSTORE BRASILIA BR 26,74 0,00\",\n", |
|
" \"10.08.2024PAGUE MENOS 1225 BRASILIA BR 406,30 0,00\",\n", |
|
" \"13.07.2024PAG*EduardoMeireles AGUAS LINDAS BR 14,00 0,00\",\n", |
|
" \"13.07.2024MR JOHN BARBEARIA LTDA BRASILIA BR 60,00 0,00\",\n", |
|
" \"18.07.2024NETFLIX.COM SAO PAULO BR 44,90 0,00\",\n", |
|
" \"19.07.2024PAG*FolhaDeSPaulo SAO PAULO BR 29,90 0,00\",\n", |
|
" \"19.07.2024IFD*CR EXPRESS Osasco BR 10,00 0,00\",\n", |
|
" \"22.07.2024APPLE.COM/BILL SAO PAULO BR 97,90 0,00\",\n", |
|
" \"22.07.2024MERCADOLIVRE*MERCADOLIVOSASCO BR 444,40 0,00\",\n", |
|
" \"25.07.2024MP*5PRODUTOS OSASCO BR 308,93 0,00\",\n", |
|
" \"25.07.2024MERCADOLIVRE*SABORESDAMOSASCO BR 258,00 0,00\",\n", |
|
" \"27.07.2024MP*MELIMAIS OSASCO BR 17,99 0,00\",\n", |
|
" \"27.07.2024Wellhub Gympass BR GympSao Paulo BR 399,90 0,00\",\n", |
|
" \"26.07.2024IFD*CR EXPRESS Osasco BR 10,00 0,00\",\n", |
|
" \"28.07.2024SAMS CLUB BRASI 4929 BRASILIA BR 2.256,92 0,00\",\n", |
|
" \"29.07.2024MG LAVA JATO BRASILIA BR 100,00 0,00\",\n", |
|
" \"29.07.2024MERCADOLIVRE*GLDECOR OSASCO BR 50,75 0,00\",\n", |
|
" \"01.08.2024MR JOHN BARBEARIA LTDA BRASILIA BR 54,00 0,00\",\n", |
|
" \"04.08.2024APPLE.COM/BILL SAO PAULO BR 54,90 0,00\",\n", |
|
" \"04.08.2024IFD*SCORPIONS EXPRESS Osasco BR 10,00 0,00\",\n", |
|
" \"08.08.2024CASCOL COMBUSTIVEIS BRASILIA BR 239,37 0,00\",\n", |
|
" \"07.08.2024IFD*GRAN LOG EXPRESS Osasco BR 10,00 0,00\",\n", |
|
" \"09.08.2024SUPERAUTOR C*Supe NITEROI BR 247,86 0,00\",\n", |
|
" \"09.08.2024UBER* TRIP WWW.UBER.COM. BR 30,89 0,00\",\n", |
|
" \"09.08.2024UBER *TRIP HELP.UBER.COSAO PAULO BR 10,00 0,00\",\n", |
|
" \"09.08.2024UBER * PENDING SAO PAULO BR 27,93 0,00\",\n", |
|
" \"09.08.2024UBER *TRIP HELP.UBER.COSAO PAULO BR 5,00 0,00\",\n", |
|
" \"15.07.2024VELOE BARUERI BR 22,26 0,00\",\n", |
|
" \"19.07.2024POUSADA PIRENEUS RESOR PIRENOPOLIS BR 179,21 0,00\",\n", |
|
" \"13.07.2024DL*GOOGLE YouTub SAO PAULO BR 41,90 0,00\",\n", |
|
" \"16.07.2024STEAMGAMES.COM 42595229912-1844160 WA 24,00 0,00\",\n", |
|
" \"16.07.2024IOF - COMPRA NO EXTERIOR 0,26 0,00\",\n", |
|
" \"16.07.2024STEAM PURCHASE SEATTLE DE 127,19 0,00\",\n", |
|
" \"18.07.2024IOF - COMPRA NO EXTERIOR 1,39 0,00\",\n", |
|
" \"22.07.2024PAG*XsollaGames Sao Paulo BR 26,99 0,00\",\n", |
|
" \"11.04.2024PRODUTOS GLOB PARC 04/12 RIO DE JANEIBR 44,90 0,00\",\n", |
|
" \"15.01.2024MP*MUNDODOSCO PARC 07/10 SAO PAULO BR 159,90 0,00\",\n", |
|
" \"17.05.2024PAG*Folhadesp PARC 03/06 Sao Paulo BR 109,60 0,00\",\n", |
|
" \"17.10.2023BIANCHINI AUT PARC 10/10 BRASILIA BR 535,00 0,00\",\n", |
|
" \"27.05.2024PARC=112 BRAS PARC 03/12 BRASILIA BR 452,00 0,00\",\n", |
|
" ],\n", |
|
" },\n", |
|
" \"list_1844160\": {\"owner_name\": \"1844160\", \"owner_id\": 2},\n", |
|
" \"list_izabely\": {\n", |
|
" \"owner_name\": \"IZABELY\",\n", |
|
" \"owner_id\": 3,\n", |
|
" \"tlist\": [\n", |
|
" \"15.07.2024SALTO CORUMBA CORUMBA DE GO BR 163,85 0,00\",\n", |
|
" \"12.07.2024PG *TON MINHACANTINA BRASILIA BR 35,00 0,00\",\n", |
|
" \"12.07.2024PASTELARIA VICOSA IV BRASILIA BR 130,00 0,00\",\n", |
|
" \"12.07.2024PASTELARIA VICOSA IV BRASILIA BR 19,00 0,00\",\n", |
|
" \"13.07.2024CANTINA E CIA BRASILIA BR 4,50 0,00\",\n", |
|
" \"18.07.2024MERCADOLIVRE*3PRODUTOS OSASCO BR 362,28 0,00\",\n", |
|
" \"20.07.2024COFFEE BIKE CAFES ESPECBRASILIA BR 10,00 0,00\",\n", |
|
" \"19.07.2024IFD*ARCOS DOURADOS COMEBRASILIA BR 48,99 0,00\",\n", |
|
" \"22.07.2024RESTAURANTE FAROFINA BRASILIA BR 43,90 0,00\",\n", |
|
" \"23.07.2024PAG*DiogoLealPimenta BRASILIA BR 183,00 0,00\",\n", |
|
" \"28.07.2024TREVISO GALETERIA E P BRASILIA BR 200,20 0,00\",\n", |
|
" \"30.07.2024OLINDA COMIDA NORDESTI BRASILIA BR 66,45 0,00\",\n", |
|
" \"03.08.2024DULCE PATAGONIA BRASILIA BR 177,90 0,00\",\n", |
|
" \"03.08.2024HOT DOG CLUB BRASILIA BR 39,90 0,00\",\n", |
|
" \"04.08.2024RESTAURANTE SAO JOAO TERESINA BR 108,00 0,00\",\n", |
|
" \"04.08.2024GELATO E GRANO TERESINA BR 24,00 0,00\",\n", |
|
" \"05.08.2024F L L MELO LTDA SAO PAULO BR 63,00 0,00\",\n", |
|
" \"10.08.2024CREMERIA ITALIANA BRASILIA BR 49,00 0,00\",\n", |
|
" \"14.07.2024RITUARIA*Rituaria SAO PAULO BR 448,20 0,00\",\n", |
|
" \"24.07.2024BIOEXATA FARMACIA BRASILIA BR 73,70 0,00\",\n", |
|
" \"12.07.2024CASCOL COMBUSTIVEIS BRASILIA BR 297,86 0,00\",\n", |
|
" \"12.07.2024LIMBER SOFTWARE E CONS SAO LUIZ DO P BR 54,00 0,00\",\n", |
|
" \"13.07.2024PAG*EduardoMeireles AGUAS LINDAS BR 22,00 0,00\",\n", |
|
" \"13.07.2024PAG*EduardoMeireles AGUAS LINDAS BR 36,00 0,00\",\n", |
|
" \"13.07.2024PAG*CidaRommanel BRASILIA BR 30,00 0,00\",\n", |
|
" \"13.07.2024ALLPARK EMPREENDIMENTOSGoiania BR 6,00 0,00\",\n", |
|
" \"14.07.2024MERCADOLIVRE*CHINALINK OSASCO BR 445,89 0,00\",\n", |
|
" \"18.07.2024PG *S S MENDES COMERCI MOGI DAS CRUZ BR 150,12 0,00\",\n", |
|
" \"19.07.2024MERCADOLIVRE*3PRODUTOS OSASCO BR 276,52 0,00\",\n", |
|
" \"03.08.2024WOW*SALE COMERCIO E SE Brasilia BR 165,00 0,00\",\n", |
|
" \"07.08.2024PARENTELA PANIFICADORA BRASILIA BR 64,90 0,00\",\n", |
|
" \"08.08.2024FranciscoDeAssis BRASILIA BR 36,00 0,00\",\n", |
|
" \"09.08.2024BONNAPAN SEU DIA MAIS BRASILIA BR 23,08 0,00\",\n", |
|
" \"10.08.2024MP*BRILHODASARTE OSASCO BR 300,00 0,00\",\n", |
|
" \"11.07.2024CARREFOUR PL2 338 BRASILIA BR 83,17 0,00\",\n", |
|
" \"15.07.2024UBER * PENDING SAO PAULO BR 19,90 0,00\",\n", |
|
" \"22.07.2024UBER * PENDING SAO PAULO BR 8,98 0,00\",\n", |
|
" \"23.07.2024UBER* TRIP WWW.UBER.COM. BR 8,90 0,00\",\n", |
|
" \"24.07.2024UBER* TRIP WWW.UBER.COM. BR 8,98 0,00\",\n", |
|
" \"29.07.2024UBER * PENDING SAO PAULO BR 8,94 0,00\",\n", |
|
" \"30.07.2024UBER* TRIP WWW.UBER.COM. BR 8,94 0,00\",\n", |
|
" \"31.07.2024UBER* TRIP WWW.UBER.COM. BR 8,96 0,00\",\n", |
|
" \"06.08.2024UBER* TRIP WWW.UBER.COM. BR 8,99 0,00\",\n", |
|
" \"10.08.2024UBER* TRIP WWW.UBER.COM. BR 20,00 0,00\",\n", |
|
" \"10.08.2024UBER* TRIP WWW.UBER.COM. BR 9,42 0,00\",\n", |
|
" \"10.08.2024UBER * PENDING SAO PAULO BR 13,97 0,00\",\n", |
|
" \"12.07.2024CIDA REIS MODA FITNESS BRASILIA BR 300,00 0,00\",\n", |
|
" \"15.07.2024LANCHONETE SERRA RODO COCALZINHO DE BR 43,00 0,00\",\n", |
|
" \"16.07.2024POUSADA PIRENEUS RESOR PIRENOPOLIS BR 1.704,00 0,00\",\n", |
|
" \"19.07.2024POUSADA PIRENEUS RESOR PIRENOPOLIS BR 1.105,63 0,00\",\n", |
|
" \"09.08.2024HOTEL GOYA P*hote RIO DE JANEIR BR 424,20 0,00\",\n", |
|
" \"12.04.2024LISTO*CLINICA PARC 04/04 BRASILIA BR 2.000,00 0,00\",\n", |
|
" \"17.01.2024BRASILIA EMPR PARC 07/12 BRASILIA BR 599,00 0,00\",\n", |
|
" \"07.01.2024PG *B4A GLAMB PARC 08/12 SAO PAULO BR 74,90 0,00\",\n", |
|
" ],\n", |
|
" },\n", |
|
"}\n", |
|
"\n", |
|
"\n", |
|
"for key in bigDict:\n", |
|
" for item in bigDict[key][\"tlist\"]:\n", |
|
" print(item)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import re\n", |
|
"\n", |
|
"file_list = [\"OUROCARD_VISA_INFINITE-Ago_24.txt\", \"OUROCARD_VISA_INFINITE-Jul_24.txt\", \"OUROCARD_VISA_INFINITE-Próxima_Fatura.txt\", \"OUROCARD_VISA_INFINITE-Próxima_Fatura(1).txt\"]\n", |
|
"partial_invoice_pattern = r\"L A N Ç A M E N T O S F U T U R O S\"\n", |
|
"\n", |
|
"partial = False\n", |
|
"for file_name in file_list:\n", |
|
" with open(file_name, \"r\", encoding=\"latin\") as file:\n", |
|
" contents = file.readlines()\n", |
|
" for line in contents:\n", |
|
" if re.findall(partial_invoice_pattern, line):\n", |
|
" partial = True\n", |
|
"\n", |
|
" if partial:\n", |
|
" print(f\"file {file.name} is partial\")\n", |
|
" else:\n", |
|
" print(f\"file {file.name} is full\")\n", |
|
"\n" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import datetime\n", |
|
"datetime.datetime.now().year" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"from mysql.connector import connect, Error\n", |
|
"\n", |
|
"query = \"SELECT * FROM OWNER\"\n", |
|
"\n", |
|
"try:\n", |
|
" with connect(\n", |
|
" host=\"localhost\",\n", |
|
" user=\"root\",\n", |
|
" password=\"pleasehashapasswordomg\",\n", |
|
" database=\"default\",\n", |
|
" ) as connection:\n", |
|
" print(\"CONNECTED!\", connection)\n", |
|
" with connection.cursor() as cursor:\n", |
|
" cursor.execute(query)\n", |
|
" result = cursor.fetchall()\n", |
|
" if result:\n", |
|
" print(\"full result =>\", result)\n", |
|
" print(result[0][1])\n", |
|
" else:\n", |
|
" print(\"No data found\")\n", |
|
" print(\"DONE!\")\n", |
|
"except Error as e:\n", |
|
" print(e)\n", |
|
"finally:\n", |
|
" connection.close()" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"class DataHolder:\n", |
|
" def __init__(self, name, age, email):\n", |
|
" \"\"\"Initialize the DataHolder with name, age, and email.\"\"\"\n", |
|
" self.name = name\n", |
|
" self.age = age\n", |
|
" self.email = email\n", |
|
"\n", |
|
" def display_info(self):\n", |
|
" \"\"\"Display the information of the DataHolder.\"\"\"\n", |
|
" print(f\"Name: {self.name}\")\n", |
|
" print(f\"Age: {self.age}\")\n", |
|
" print(f\"Email: {self.email}\")\n", |
|
"\n", |
|
" def update_age(self, new_age):\n", |
|
" \"\"\"Update the age of the DataHolder.\"\"\"\n", |
|
" self.age = new_age\n", |
|
" print(f\"Age updated to: {self.age}\")" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"from decimal import Decimal\n", |
|
"\n", |
|
"string = \"12.99\"\n", |
|
"test = Decimal(string)\n", |
|
"\n", |
|
"print(test)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"class Transaction:\n", |
|
" def __init__(self) -> None:\n", |
|
" pass" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"\"docker exec -i f5a5a73ad60e mysqldump -uroot -ppleasehashapasswordomg --databases default --skip-comments > /home/f2256342/forge/robopato/dump.sql\"" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import os\n", |
|
"\n", |
|
"os.listdir(\"./documents\")" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import os\n", |
|
"\n", |
|
"with os.scandir(\"./documents\") as entries:\n", |
|
" files_only = [entry.name for entry in entries if entry.is_file()]\n", |
|
"\n", |
|
"print(files_only)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import glob\n", |
|
"\n", |
|
"files_only = glob.glob(\"./documents/OUROCARD*.txt\")\n", |
|
"\n", |
|
"print(files_only)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"from pathlib import Path\n", |
|
"\n", |
|
"dir_path = Path(\"./documents\")\n", |
|
"files_only = [file.name for file in dir_path.iterdir() if file.is_file()]\n", |
|
"\n", |
|
"print(files_only) # This will print only the files in the specified path" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import glob\n", |
|
"\n", |
|
"files_only = glob.glob(\"./documents/extrato*.csv\")\n", |
|
"\n", |
|
"print(files_only)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import csv\n", |
|
"from datetime import datetime\n", |
|
"\n", |
|
"# Read the CSV file and extract the \"CATEGORY\" column\n", |
|
"categories = set()\n", |
|
"with open('PAYEE_FILTER.csv', newline='', encoding='utf-8') as csvfile:\n", |
|
" reader = csv.DictReader(csvfile)\n", |
|
" for row in reader:\n", |
|
" category = row['CATEGORY']\n", |
|
" if category: # Only add non-empty categories\n", |
|
" categories.add(category)\n", |
|
"\n", |
|
"# Create a list of tuples with the unique categories and current datetime as a string\n", |
|
"category_tuples = [(category, str(datetime.now(tz=None))) for category in categories]\n", |
|
"\n", |
|
"insert_query = \"INSERT IGNORE INTO default.CATEGORY (NAME, CREATED) VALUES (%s, %s)\"\n", |
|
"\n", |
|
"\n", |
|
"from mysql.connector import connect, Error\n", |
|
"\n", |
|
"try:\n", |
|
" with connect(\n", |
|
" host=\"127.0.0.1\",\n", |
|
" user=\"root\",\n", |
|
" password=\"pleasehashapasswordomg\",\n", |
|
" database=\"default\",\n", |
|
" ) as connection:\n", |
|
" print(\"CONNECTED!\", connection)\n", |
|
" with connection.cursor() as cursor:\n", |
|
" cursor.executemany(insert_query, category_tuples)\n", |
|
" connection.commit()\n", |
|
" print(\"DONE!\")\n", |
|
"except Error as e:\n", |
|
" print(e)\n", |
|
"finally:\n", |
|
" connection.close()" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import csv\n", |
|
"from datetime import datetime\n", |
|
"\n", |
|
"# Read the CSV file and extract the \"CATEGORY\" column\n", |
|
"categories = set()\n", |
|
"with open('PAYEE_FILTER.csv', newline='', encoding='utf-8') as csvfile:\n", |
|
" reader = csv.DictReader(csvfile)\n", |
|
" for row in reader:\n", |
|
" category = row['CATEGORY']\n", |
|
" if category: # Only add non-empty categories\n", |
|
" categories.add(category)\n", |
|
"\n", |
|
"# Create a list of tuples with the unique categories and current datetime as a string\n", |
|
"category_tuples = [(category, str(datetime.now(tz=None))) for category in categories]\n", |
|
"\n", |
|
"print(category_tuples)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import csv\n", |
|
"from datetime import datetime\n", |
|
"\n", |
|
"# Read the CSV file and extract the \"SUBCATEGORY\" column\n", |
|
"subcategories = set()\n", |
|
"with open('PAYEE_FILTER.csv', newline='', encoding='utf-8') as csvfile:\n", |
|
" reader = csv.DictReader(csvfile)\n", |
|
" for row in reader:\n", |
|
" subcategory = row['SUBCATEGORY']\n", |
|
" if subcategory: # Only add non-empty categories\n", |
|
" subcategories.add(subcategory)\n", |
|
"\n", |
|
"# Create a list of tuples with the unique categories and current datetime as a string\n", |
|
"subcategory_tuples = [(subcategory, str(datetime.now(tz=None))) for subcategory in subcategories]\n", |
|
"\n", |
|
"print(subcategory_tuples)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# import os\n", |
|
"# file = os.path.join(\"E:\\\\forge\\\\python\\\\robopato\\\\documents\", \"OUROCARD_VISA_INFINITE-Mar_24.txt\")\n", |
|
"file = \"./documents/OUROCARD_VISA_INFINITE-Abr_24.txt\"\n", |
|
"def yadda(file: str):\n", |
|
" # Open the text file\n", |
|
" with open(file, \"r\", encoding=\"latin\") as file:\n", |
|
" # Read the contents of the file\n", |
|
" contents = file.readlines()\n", |
|
" print(contents)\n", |
|
"\n", |
|
"yadda(file)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"from pathlib import Path\n", |
|
"\n", |
|
"file_path = Path(\".\") / \"documents\"\n", |
|
"\n", |
|
"matched_files = file_path.glob(\"OUROCARD*.txt\")\n", |
|
"\n", |
|
"for file in matched_files:\n", |
|
" print(file)\n", |
|
" print(file.name[:-4][23:])" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import csv\n", |
|
"\n", |
|
"with open(\"./documents/extrato.csv\", newline=\"\", encoding=\"latin\") as csvfile:\n", |
|
" spamreader = csv.reader(csvfile)\n", |
|
" csv_list = list(spamreader)\n", |
|
"\n", |
|
"print(csv_list[1:])\n", |
|
"print(csv_list[1:][0])\n", |
|
"print(csv_list[1:][0][0])\n", |
|
"print(csv_list[1:][0][0].split(sep=\"/\"))\n", |
|
"print(csv_list[1:][0][0].split(sep=\"/\")[0])\n", |
|
"\n", |
|
"for item in csv_list[1:]:\n", |
|
" print(item)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"import csv\n", |
|
"\n", |
|
"with open(\"./documents/extrato.csv\", newline=\"\", encoding=\"latin\") as csvfile:\n", |
|
" spamreader = csv.reader(csvfile)\n", |
|
" for row in spamreader:\n", |
|
" print(\", \".join(row))" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 1, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"insert_query = None\n", |
|
"insert_bulk = []\n", |
|
"\n", |
|
"def db_insert(insert_bulk: list[tuple]):\n", |
|
" from mysql.connector import connect, Error\n", |
|
"\n", |
|
" try:\n", |
|
" with connect(\n", |
|
" host=\"127.0.0.1\",\n", |
|
" user=\"root\",\n", |
|
" password=\"pleasehashapasswordomg\",\n", |
|
" database=\"default\",\n", |
|
" ) as connection:\n", |
|
" print(\"CONNECTED!\", connection)\n", |
|
" with connection.cursor() as cursor:\n", |
|
" cursor.executemany(insert_query, insert_bulk)\n", |
|
" connection.commit()\n", |
|
" print(\"DONE!\")\n", |
|
" except Error as e:\n", |
|
" print(e)\n", |
|
" finally:\n", |
|
" connection.close()" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"CONNECTED! <mysql.connector.connection_cext.CMySQLConnection object at 0x00000236E4BC8170>\n", |
|
"('001f8d964f1135ef1572a882a5596d3590c9bfd5bc85a53070ecfea767ef8578', datetime.date(2024, 12, 17), 1, 'Pix - Recebido - 17/12 14:12 00080517439115 RAQUEL CALL', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('003f537755dc5e990daae4b53537a8139acf8f425f5a0a86bf123536916ee263', datetime.date(2024, 6, 26), 1, 'Pix - Enviado - 26/06 15:33 Vibra Energia Sa', 'BR', Decimal('274.66'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('00547226757275590e565b59a538cea352767f70f80eddaa21eb57d559af01e7', datetime.date(2024, 1, 3), 2, 'PAG*BarracaDoPreto LUIS CORREIA', 'BR', Decimal('205.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('005d9f03621012c0006f529ad34fc4ecfa1b98f840286732da6bbf5f330ffd6e', datetime.date(2024, 1, 26), 2, 'PRIME GLOBAL PAGAMENTO BRASILIA', 'BR', Decimal('510.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('0064b29dd5f27d95280308a84847de4f7381f9a5fed422521681cd57adb00466', datetime.date(2024, 1, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('8589.12'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('006d7c308dabeebe440d2bc4b4148e3b03fd18229574873455a445dca2dca475', datetime.date(2024, 4, 23), 2, 'IFD*RSNT MIWA RESTAURANBRASILIA', 'BR', Decimal('149.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0104ecb8b46ae0e3caaa2aa82c24c555ce8624f80ecf160f3e72e03700aa97eb', datetime.date(2024, 1, 8), 1, 'Pix - Enviado', 'BR', Decimal('15.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('01106e587f31c7cb51757b13460a6eeb0db7a3afa44404bb7e27c88d8343f047', datetime.date(2024, 1, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('22380.63'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('013132f814ec70564318e731ce9fe4049c5fece8c9ae596fd02d9678aa8d882b', datetime.date(2023, 12, 26), 2, 'MICROSOFT*MICROSOFT 365SAO PAULO', 'BR', Decimal('-449.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('01809a6c7279ff41fdd945bec3b6a738ae5bebf3012a96c33a3a3967db22c990', datetime.date(2024, 5, 15), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.93'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('018d3048881771d0bd22a0217015795bff4a88ccef4887b7ba670a4184bbaecd', datetime.date(2024, 3, 25), 1, 'Pix - Enviado', 'BR', Decimal('42.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('01b321476c82859577c145d30463b33e1f1b73afdb639b24bcb370e79c870689', datetime.date(2024, 4, 25), 2, 'OUTBACK BRASILIA BRASILIA', 'BR', Decimal('123.09'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('024953202b844cf72d8c14ed385ad5fc89950f5e7fae7229aa7b4710492e757b', datetime.date(2024, 2, 7), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('9.02'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('025a1637445131c974b804d5653fddd3b1b7b5755c377cc7c32fa36fb9e31da3', datetime.date(2024, 4, 8), 2, 'TRACKEFIELD BRASILIA', 'BR', Decimal('120.10'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('027f375697a4fc447f3cb23eea37c62fea414972a9585af83868877598590ca9', datetime.date(2024, 11, 26), 2, 'ifood *IFD*MIPA CULI Vila Yara Osa', 'BR', Decimal('145.99'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('02a70ae713f2402fe72d176f12fb6049fa216dc264a5b54597511857be1259ee', datetime.date(2023, 12, 26), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('9.98'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('02a9c9e88bd5ca700c559d2c713a87c7561191ba03d4c1e2f660b03c0073ce62', datetime.date(2024, 10, 23), 1, 'Transferência Periódica - 23/09 CRISTINA B SILVA 002/010', 'BR', Decimal('280.00'), None, 1, 2, 10, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('02aea39d0ea8119cec781c33463a4aace6749356d06d4789fdc742a8140b162c', datetime.date(2024, 5, 27), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('02b7b32aa6c1f1897cd94241e485f8218562ec429e1d71267b8511d8138174e0', datetime.date(2024, 8, 26), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('02dcdd690afddaa2b991cb924c312491fd1256901fc80a07ff2f8a103c82c040', datetime.date(2024, 7, 29), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('02ee857d3d29ef823f29c97d6bc73b7b072a919ce10381c69d36cee824e9730b', datetime.date(2024, 6, 6), 2, 'IFD*VINNYS PIZZA E ALIMBRASILIA', 'BR', Decimal('121.99'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('032e2e51e1eae52b47e8866d14689821386c652b26f2dd32874817eee934c742', datetime.date(2024, 11, 7), 1, 'Pix - Enviado - 07/11 07:02 Utb Uniao Transporte Brasi', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('034bcafe8ccad12efaa41a5d6a4e59f7a6dc28bfed13ef63347fed77230c980f', datetime.date(2024, 4, 3), 2, 'ifood *IFD*RC MELO C Vila Yara Osa', 'BR', Decimal('226.51'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('0377a3c9d661129ff9db3a615ae56ecd71d2a9978659dbdacbe05be7b0a79625', datetime.date(2024, 8, 12), 1, 'Saldo Anterior', 'BR', Decimal('0.00'), Decimal('0.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('03deefe5b222fddae046af2229cd3448d966bb94d61123debe56f001317d3552', datetime.date(2024, 11, 25), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('0421636287d496a3ad271b4aad4d7b4aad564cee833a5752b6fc38083c05b7bc', datetime.date(2024, 8, 16), 1, 'Pix - Enviado - 16/08 14:05 Marcio De Oliveira Silva', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('0425eb7c5a8ddc2df2d60472a70abd7f374cd1a7faf02d1eae1fdd7757c13566', datetime.date(2024, 4, 27), 2, 'COBASI BRASILIA VENANC BRASILIA', 'BR', Decimal('617.16'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('04314435897554f10377b4d9b1dd5ca4550b86c33e4750f7989aa78cba6f2914', datetime.date(2024, 9, 17), 1, 'Pix - Recebido - 17/09 19:27 94455317600 ANIZIA MARIA P', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('0480fbaccf98a01886673a1132f36a47e1158ed25950020ac9d22b5083d5fece', datetime.date(2024, 4, 9), 1, 'Pix - Enviado', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('04871fc14235bed8ead24c4dcbf7398c490b42a05490255acd25684d62422d0a', datetime.date(2024, 8, 3), 2, 'WOW*SALE COMERCIO E SE Brasilia', 'BR', Decimal('165.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('04b5b892cfbf662548c93a9e2a5348163cebdb0c65c951de35c374278689d8f9', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 01/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 1, 12, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('04b65d601950054e1cf1e485c505043b3595a0e0e5eba11fab4a791019ab95cf', datetime.date(2024, 12, 6), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('7.54'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('04d248d55858747307cbe62733548af38675374c5b05e2ba30a1eff04ca84329', datetime.date(2024, 3, 28), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('04ec9b356e81b0ad9e4dd1f5314cb0c4caae32fb8f5edb69738d1f16eedc0eea', datetime.date(2024, 10, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('054ac94005aec7d81b03e67b126a65f0c2c2636f88fc07132c72297ddf7a2930', datetime.date(2024, 5, 31), 2, 'WOW*SALE COME PARC 01/02 Brasilia', 'BR', Decimal('475.00'), Decimal('0.00'), 2, 1, 2, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('054e50cd502acaff176b161226bb1f8b23b4062b48821e92f149a7bf30862936', datetime.date(2024, 9, 25), 2, 'MERCADOLIVRE*8PRODUTOS SO PAULO', 'BR', Decimal('418.20'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('056b5364f1f4cf38c6cfa881b62a09c9dd1bf09f2688cea068670025ecf066ad', datetime.date(2024, 5, 19), 2, 'Bacio di Latte-LJ3045 Brasilia', 'BR', Decimal('34.80'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('058149a3e695ebd6ba9b77ad95c64f7004d2f955e4890a67565b187570c84593', datetime.date(2024, 10, 31), 2, 'SCORPIONS EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('05a1680f3bc7578a9e866c2d9ed7f2a3dbdf07a7766fb95439ae2d0d117c1e1c', datetime.date(2024, 1, 31), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('26.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('05cbb8b50e1d0a6a4516b58bfe562eaf2b3a1cc0813569745bf576fafbf7feab', datetime.date(2024, 8, 30), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('16.71'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('05f724dbc69bab0a57e0a19fec9b13a53c6e3cfbf86171f32b9c744b951bf5b2', datetime.date(2024, 4, 7), 2, 'PAG*GaleteriaSerrana BRASILIA', 'BR', Decimal('174.10'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('063435cd60815d002e71cf3667a41a239777a18c00b54b4b6a0a2083d1373f7d', datetime.date(2024, 10, 16), 2, 'GOLDEN GOIANIA', 'BR', Decimal('40.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('063bad6dd8b86990b6feed34db9af41cf4582b036f568d78be70d287cdaf9bb6', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 23/11 12:45 Leonardo Ruaro', 'BR', Decimal('350.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('06e6ff5db223896a1503d8c06e0e62d8054bf3ffc071860766facdf75e397e26', datetime.date(2024, 11, 6), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('115.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('06f44dc4195a6107b20979ad5cfaf408e55ab634414d493060e4bab9dc8515ea', datetime.date(2024, 3, 7), 1, 'Ordem Banc 12 Sec Tes Nac', 'BR', None, Decimal('6605.06'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('06f8c1a38611e0f9b3b60d38ab7d0c5a11e6ffea2a0da1fd3179d9d8bf579479', datetime.date(2024, 11, 16), 2, 'MERCADOLIVRE*INBOARDGAMOSASCO', 'BR', Decimal('30.40'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('070def4bf336d42fceadda5a3154127358513081ebe4558391d018cc9d51cf46', datetime.date(2024, 1, 18), 2, 'SHOP PIER 21 BRASILIA', 'BR', Decimal('5.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('071115d550b35a5d56832ef5655c6b5de28dd091e9fc8249d78ac9cce526cba3', datetime.date(2024, 7, 5), 2, 'MP*AVELART OSASCO', 'BR', Decimal('1190.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('075ef6d9359cfea1e73539c55d7f51e0ec5063cc80fdf7c403cee493124d7276', datetime.date(2024, 10, 12), 2, 'MULTIPLAN BRASILIA', 'BR', Decimal('25.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('0798e9a6c755218e0d5c1465c26b1b167ef9fc94a59f8924c95eab4b2f987aaa', datetime.date(2024, 11, 23), 2, 'LIIV PHARMA BRASILIA', 'BR', Decimal('82.98'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('07a5d3a8282c0cf22981a4bbc3c5905155dd0f835db99c956b03bbe0b0a368c5', datetime.date(2024, 5, 6), 1, 'TED Transf.Eletr.Disponiv - 104 2272 28986008149 MARIA ELIENE DE', 'BR', Decimal('1386.18'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('07b01b17c630a4d5714e2ba25dd74a7597518c601345c69a06e057deb173157e', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 05/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 5, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('07d5d37332eb1d938b64fd6e97e41cb85099fa7690e21f45de50895215f353c2', datetime.date(2024, 3, 9), 2, 'ALLPARK EMPREENDIMENTOSGoiania', 'BR', Decimal('14.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('07d7d51ff1ec18c0cb6976a6799883d826781f4cf427f27aa9e6b55cd72eb489', datetime.date(2024, 2, 27), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.96'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('08015da0165e035c8a433646a54d63a78b812f1c70abf5bd42ecf31240c391db', datetime.date(2024, 6, 22), 2, 'PAG*XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('082424055a8a031519dbf091197edb13e234ecd7944dbb4b16e2a481771aac8d', datetime.date(2024, 2, 10), 2, 'CASA DE BISCOITOS BRASILIA', 'BR', Decimal('78.50'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('088992f716d7dcaadb6f98405b67587478c8737c3811edcfadc6f5e18f7a5f7f', datetime.date(2024, 5, 20), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('45.90'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('08d47e49baa67fa2f154acc5183d5adb03af897a4b2c299741c88f9592f5a6e4', datetime.date(2024, 2, 20), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('08f92aaef5f6dd5aad849bf57803010c6e21156f62cf2f4a248fb49a11626af8', datetime.date(2024, 5, 6), 2, 'MURAKAMI BRASILIA', 'BR', Decimal('67.60'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0905dca571e4b179c13538c8a273c6040ac7baeff58714ab47e0b3340f200a2f', datetime.date(2024, 9, 29), 2, 'Jose Ferreira De Olive Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('091078d8fffa374a59347fe9180990692f25d5f29cf86ceda2f8502234d13d14', datetime.date(2024, 7, 5), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('092ddd00a64bdddbcf5c0fd37cede7cac07f49c3a8b9b0065465899c7b36b4f4', datetime.date(2024, 9, 27), 2, 'RESTAURANTE FAUSTINO P PARNAIBA', 'BR', Decimal('100.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('093776c7909228fab7da0fd1a1948bd8c2f5165be3d5276b4f3a4c1ce81b210d', datetime.date(2024, 10, 16), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('52.06'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('097e4e54c487919e1bc4678a950deb8263a71a615bbc8dd2858320a9da7d13ee', datetime.date(2024, 4, 8), 1, 'Pix - Recebido', 'BR', None, Decimal('380.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('0985bc31b717688cffebe27c5e96fc2198dd17c293ce7105ab795b1c1f7e1db6', datetime.date(2024, 8, 30), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('53.99'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('099595f4de213e7a97a98795fcf89407fa54bca6d2e77cc591a1d179e93fd90e', datetime.date(2024, 10, 17), 1, 'Pix - Enviado - 17/10 12:40 La Duquesita', 'BR', Decimal('433.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('09b9dfb89def9c449fec81bb1c334a47cf23797b258e4b123042245a76388c95', datetime.date(2023, 12, 18), 2, 'ifood *Clube *iFood Vila Yara Osa', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('09fa25665bbd1203653ff2ac23ad80a290fbfe39bd8a3ef5ba16337d829cd9c5', datetime.date(2024, 2, 6), 1, 'Pix - Enviado', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('0a02e931920a50aa9ed189a8da751d442edd2bed577880d332659f11a830746f', datetime.date(2024, 5, 9), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('27.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0a43980483d2125d18759ecabc6c5872d92858a9ddb5640c1d7406ce5c891089', datetime.date(2024, 2, 8), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('7.96'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('0a6bdd6549938e89247e9daf7a3126956f15b2641d29bdb4577ff271f3a53ce2', datetime.date(2024, 10, 1), 1, 'Pix - Enviado - 01/10 15:46 Moov Comercio De Suplement', 'BR', Decimal('350.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('0a7a18d10fda4c8986e0b3f1d916896d4b3746fd08b182daf8da2b2721285f5c', datetime.date(2024, 5, 16), 1, 'Pix - Enviado - 16/05 05:38 Gabriel Polanzzo Ribeiro D', 'BR', Decimal('84.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('0a8c2cf097ee2a9074345714f8fe5c7e0b8af0f6bb5f08955281733307c66b77', datetime.date(2024, 7, 30), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A', 'BR', Decimal('1365.03'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('0ab3f4232b7751f633b6cc0a2b8044e9fe755d88e801cdf4019db9d0cfb8cf65', datetime.date(2024, 6, 27), 1, 'Cashback automático cc', 'BR', None, Decimal('177.12'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('0b362db00a21b94df5312389072347e14fa71c07fca0c5c005292a936a17b8ba', datetime.date(2024, 10, 10), 1, 'Pagamento de Boleto - FILIAL EDITORA DF SEI BRA', 'BR', Decimal('2084.50'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('0b7683db52db017441020f1d6ec20ba28329d4d12c17c892aaa9ce01b3eae5cf', datetime.date(2024, 10, 23), 1, 'Pix - Enviado - 23/10 15:58 Loterias Caixa', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('0b7a99751c3885adebd337c2c3ed399f4f515689193dfbfc43b749e63650f11c', datetime.date(2024, 3, 12), 2, 'AMAZONAS PEIXARIA MACAPA', 'BR', Decimal('141.84'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0b92cc7be04f9b9c4c4259b55a1b130a11132ef6de686e14262eca262f001b5c', datetime.date(2024, 1, 25), 1, 'Pagamento de Impostos', 'BR', Decimal('97.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('0bc721a52dc3cc2f0f81e30b8a6436c127804925d4cf10165a85c187e53c3aae', datetime.date(2024, 9, 26), 2, 'BOLO DA MISERICORDIA TERESINA', 'BR', Decimal('47.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0bd92e099ac4b393482c26e48b0233f6fb60bc6c66315c01b3607d32a153203f', datetime.date(2024, 12, 16), 2, 'BRB MOBILIDADE METRO BRASILIA', 'BR', Decimal('5.50'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c00159433ca26d517d7490321e76086b66a814457845a15b3f1d188d3240fec', datetime.date(2024, 4, 5), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('248.37'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c031fc50bb3e36c9434e24ec66fe77ef67939081551b97b633d2b97d99f32f2', datetime.date(2024, 6, 30), 2, 'BACO PIZZARIA BRASILIA', 'BR', Decimal('336.74'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c139f70c2d9c2fbbd0c9b4170ccee1857a546a2f2cd2724cd2f8e2e6d528a21', datetime.date(2024, 4, 5), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c47d14a4529cf403c4a11c74bc8cc8ff20b1f67a818490344b621da04d05cf4', datetime.date(2024, 9, 20), 2, 'IFD*EL PASO TEXAS BAR EBRASILIA', 'BR', Decimal('176.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c5f7702ffd1de95c8494416be8b281ac26ff654d10b6bd22b7c067d07bea8a0', datetime.date(2024, 6, 21), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('23643.01'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c631adb8d8c25719037af231228b7a23df4eeb54e57f9cb86b7ee103f7b3337', datetime.date(2024, 10, 29), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('38.90'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c6aabc0aecbccdec869d4766cab43c1fc84f157edb511a69ced2fa1e820ac58', datetime.date(2024, 2, 29), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('104.46'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0c6b90f19df3f9d52378b594f5df6d21be5c4079be38b034d0c7d6898cae25ee', datetime.date(2024, 11, 29), 1, 'Cashback com pontos - Cashback Automático', 'BR', None, Decimal('26.48'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('0caf048b10ebd9c462cd2042a9558bcb38ae8ef8fc89e30222f29ff8c3246348', datetime.date(2024, 5, 23), 2, 'MERCADOLIVRE*SABORESDAMOSASCO', 'BR', Decimal('154.85'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('0cb150bf2e0318392c01f6c3d7729a0379e9e59faefe352188625556eebf17f3', datetime.date(2024, 4, 11), 2, 'DUO CUCINA BRASILIA', 'BR', Decimal('138.31'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0cb1da50851085473bd9a773c12df45b99732049393097449588d257584c2c59', datetime.date(2024, 12, 19), 2, 'AMAFARMA BRASILIA', 'BR', Decimal('480.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0cbe0d16a126653276929c1567b239dacc5d6520a35c7e62b3e37fe25e5f3f07', datetime.date(2024, 11, 11), 1, 'Pix - Enviado - 09/11 18:59 Josias Nascimento Pereira', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('0cd28761e334b34725d7b0b1460109ce70f18e223b46cd49c50794be7d2019b5', datetime.date(2024, 10, 13), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('92.50'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d1a2c4a394296d40a43508cea04ad5602b51ca27488d9c060a8adb6727ede88', datetime.date(2024, 11, 7), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('220.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d2fef69e563f59d63ba72894e254d7597ff32af1d1cdc4b7687c459a87786f2', datetime.date(2024, 2, 22), 2, 'MERCADOLIVRE*FUNPAPERPAOSASCO', 'BR', Decimal('155.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d3b014d3ceb10572e17d39c29f08fae68d8df68da55d23d91feb52ec6fe9f5e', datetime.date(2024, 9, 25), 2, 'MP*MELIMAIS OSASCO', 'BR', Decimal('27.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d6ca620e0be9ade0f9e0db4654c75a1b54835ed309bc00d45214b4012ec345e', datetime.date(2024, 11, 8), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('96.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d6e9ad39ba319c260125c2150a3d1356a975f3466ba8adc1c2485b85a0b4479', datetime.date(2024, 11, 26), 1, 'BB Ações ESG Globai BDR I', 'BR', None, Decimal('14089.47'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d7afada41b3c7008888f1a6cb3b277442e9c109450a7569ba501f3b3508d47b', datetime.date(2024, 9, 29), 2, 'IFD*RESTAURANTE ROMA LTBRASILIA', 'BR', Decimal('233.89'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0d91a7bafd33b633b18824d37b07c3fd3e74941cb0147837d73948ab86351cf9', datetime.date(2024, 10, 2), 2, 'SALVADOR BUSINESS FLAT SALVADOR', 'BR', Decimal('570.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0daa0d57cf48e441dd4c52bd30006510cb5537e20b4a71ec7571c06bc6950ad0', datetime.date(2024, 6, 4), 1, 'Pix - Enviado - 04/06 08:54 Isabela Guedes Ribeiro', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('0db07f1e181a5236b8845ba54459b6f4d9e6dc18e6ae110f864f090775b8247e', datetime.date(2024, 6, 13), 2, 'MERCADO*BRONZATTOCOME SOROCABA', 'BR', Decimal('106.56'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('0dc81e0abe9949bfad5e0b5df3101f13e807c28fcdcd06fff2232d00ddd069c3', datetime.date(2024, 7, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('44.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('0df55f7b9e94b6c4e4d8ae71e77f5881de9195afd292c7880db0f83a6b59b05b', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 08/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 8, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('0dfc201e1c107cb78964a8e8a19732aa5e0be0e3760d12de3bbf289e7bed246d', datetime.date(2024, 4, 18), 2, 'MP*MAGAZINEPADOVANI OSASCO', 'BR', Decimal('49.52'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0dfdc4263e8e65c6de2c7f8d38161c0daacd63cb37b382847bd2ddd056d2da68', datetime.date(2024, 3, 18), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('13.92'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('0e01284b9bbb0eaf29b1f20b0c0983491751648cf079479882b09562b3d831c6', datetime.date(2023, 12, 16), 2, 'PAG*ChacaraBezerra BRASILIA', 'BR', Decimal('110.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('0e46a7d897b4b244b34fed38054dbf7d1c223be1b79e9b0165f782387c564aa1', datetime.date(2024, 10, 12), 2, 'MARTINS BATERIAS BRASILIA', 'BR', Decimal('800.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('0e57b50b2f77b7e4250bc109c4789778660d39f30f5c8fa27623ac2ccacbd1e4', datetime.date(2024, 1, 3), 2, 'PAG*MariaDoLivramento LUIS CORREIA', 'BR', Decimal('46.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('0e5fbe2902ef47437722f490491a480b3ef40bbcf3f74652553b7bb380dac37a', datetime.date(2024, 4, 10), 1, 'Pix - Enviado', 'BR', Decimal('495.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('0e6917b87b60f238e578f55b061973dce7455bf70b91901abf086bc8e074f4e0', datetime.date(2024, 11, 23), 2, 'MERCADOLIVRE*H2ELETRONIOSASCO', 'BR', Decimal('97.43'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('0e96f7d870e5d087f1203e52f66188f9cb74907f87aa65f5665e89064aef10af', datetime.date(2024, 8, 6), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('210.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('0ea3159eaad47b82e7d2dca7d11a55815f79176c21ffc79ec050d0fd4fe87fb5', datetime.date(2024, 7, 22), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('43.90'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('0eaf1ae32c2b2de79e94da09ed4e0c6ea41901d02984db987752b1c4e65cc5e2', datetime.date(2024, 4, 17), 2, 'IFD*ZANELLO VIANNA INDUBRASILIA', 'BR', Decimal('272.99'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0eb40fea1e432802c28adf0a84b54843b05f7d0e17ea3b33ca184b4dd191adbc', datetime.date(2024, 3, 7), 2, 'MURAKAMI BRASILIA', 'BR', Decimal('79.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f1d0ecf4235014a3f073eaad4327b3decf7965ec49a68db6910e2af908617dd', datetime.date(2024, 11, 3), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('294.24'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f2084ba6eed3b76c092b6f7714f5e6c4560047207e840c3e55609331c5535a5', datetime.date(2024, 1, 12), 2, 'PAO DE ACUCAR 0223 FRE TERESINA', 'BR', Decimal('284.84'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f330bb02f9edbdd8e4684ecc88235d339eeb2f541e5892cf16eb694323da8cb', datetime.date(2024, 2, 4), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('141.95'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f3ee3ff751840980eb7ebf4cd5acd0287ca16ff14a757842394fd476db43c3c', datetime.date(2024, 1, 26), 1, 'Pix - Enviado', 'BR', Decimal('21.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f487f05f5a201c15ff59fa8d7fd70c35aaae60bf1f7d5e690fc94986d42f30e', datetime.date(2023, 12, 14), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.98'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f6e4dbba4fe8df96c55f19c623c8c135f529904bc8e58631fff3a9e4379dd42', datetime.date(2024, 6, 18), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f738243589eba1524e963d53944ea22f11e0c6bbc4a20be6d0c6ebaf6f9865f', datetime.date(2024, 4, 9), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.97'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('0f8e005fab532d88a2ff48ed56538f617ea2afc83d6a7a629920758861ff3a55', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 04/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 4, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('0fc655a3e100801823ae6dd660c475dc877e86d8e7aa48994f2d24d55a81bafd', datetime.date(2024, 9, 23), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('65.13'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('0fcf7edc6ea569911f2c5d9372f317b3cca60b92ec58e6204444b81d58b19ae2', datetime.date(2024, 2, 13), 2, 'ONI UNO GELATERIA LTDA BRASILIA', 'BR', Decimal('48.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('0feaa1f3c9498c3cd6af8d5854e21300897128b5509eefd400ab96001b0dfe66', datetime.date(2024, 5, 17), 2, 'IFD*MARIANA PERDOMO CONBRASILIA', 'BR', Decimal('84.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('100e90173d0e94f3893d3688f51034dc38bb3c8960d8e36f657f8d235d32420c', datetime.date(2023, 12, 30), 2, 'GURGUEIA PARK HOTEL CRISTINO CAST', 'BR', Decimal('200.80'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('100eee369c406658aab098204481b59eb3e250c447d5c3551d588fddb85ecbd6', datetime.date(2024, 2, 21), 1, 'Recebimento de Proventos', 'BR', None, Decimal('10046.60'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('101a1ed58b208805984f429bd1effdb574bc8ea1b216b395e0508b78a4415600', datetime.date(2024, 12, 17), 1, 'Pix - Recebido - 17/12 14:23 00044464525172 MARILIA AND', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1021deaa867990236bfbe25018a59a391f0f9be3cbdb2716e430f53af8548763', datetime.date(2024, 2, 1), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('1065b89b069e3f071e36cced07cea29b4ab9e19985005de1f5b3c4bc09c8f7c5', datetime.date(2024, 2, 5), 1, 'Pix - Recebido', 'BR', None, Decimal('77.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('106a640e2dfc12d52b6be7bc21876c2a2552fdf20f56cadaa1c5dee20760cdf5', datetime.date(2024, 7, 22), 1, 'Pix - Recebido - 21/07 18:57 00091116546434 VESCIJUDITH', 'BR', None, Decimal('150.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('107564899e4ea3d20700e6e3820309f265c45d78a9aa55e5ad266f58ce030aa8', datetime.date(2024, 9, 25), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('37.95'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('10feabe9b769bd92c632fafc12b2d34f193e065d40011c5bf85c6d21d411a475', datetime.date(2024, 5, 26), 2, 'IFD*MATHEUS ROCHA DE SOBRASILIA', 'BR', Decimal('77.98'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('11185e3eaaba7a0f71450852a39760754e89b3ed5e8b0670821b3d1bf35f27e9', datetime.date(2024, 9, 5), 2, 'CARREFOUR BAIRRO - DF BRASILIA', 'BR', Decimal('222.19'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('1125a81f6f31095fa1b9e752c96bf0406c6d75d91bb9327474d9c43889537c86', datetime.date(2024, 1, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.91'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('115ea38b56004d1d66f455ccf4886c6fc4a1bc2cc4eefc76183a421337b0c4a4', datetime.date(2024, 10, 19), 2, 'CE MED LINEA VITTA Brasilia', 'BR', Decimal('28.50'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('117a5c6c4e491b3bf462da0878a8715a5ac521c3ed99ee826f4483e706d5175c', datetime.date(2023, 12, 22), 2, 'COCO BAMBU PARK SHOPPI GUARA', 'BR', Decimal('286.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('11869781d8cb009da85f68eae2bc5a2ff7d6efcd22ab58bf89e99ef32d70baeb', datetime.date(2024, 1, 6), 2, 'PAG*LudymillaDo LUIS CORREIA', 'BR', Decimal('159.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('1198db568c41a97191073bcd27dded3cc37dfdf8c8c410355cde9bbf73a2c89e', datetime.date(2024, 12, 10), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('11.41'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('11c0f965f148d343ff16e9926ffa48472ca05e3ba6224bcebfc2cf06d4daa1b7', datetime.date(2024, 12, 13), 1, 'Pix - Enviado - 13/12 08:44 Vibra Energia Sa', 'BR', Decimal('22.74'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1212332b8ecf65238f4f663bc3d720a3bcde68f91745af8aa1446da490b2037c', datetime.date(2024, 6, 11), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('12149fe80d127cc1b7a77311c8f18b489d5f4bc631d714959098efc5a5422a03', datetime.date(2024, 12, 2), 2, 'BERLINF*AC EQS 208 408 BRASILIA', 'BR', Decimal('32.10'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('122bf12a903d49c03109c888469e6f67b0a04ad90de0643ee93c66ff2992bbac', datetime.date(2024, 7, 6), 2, 'POP360 BRASILIA', 'BR', Decimal('139.98'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('12449ed7e951cf11aa87fa83f3cc07b204382ba58e09c59a5bc13fe7e08ee23b', datetime.date(2024, 2, 26), 1, 'Vivo Celular', 'BR', Decimal('240.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('12a026f2bb2e91808661083b58e0f257d33c80facfc9655847f099d280dc4b8d', datetime.date(2024, 1, 12), 2, 'POSTO NOSSA SENHORA DE TERESINA', 'BR', Decimal('162.84'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('12bc4d83d2f33c78c94be34e39a185c7446a27ee0578a2cfc372b0b9b4c482fe', datetime.date(2024, 11, 9), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('87.89'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('12eab4f90bcdbf31aa1275eede4f5dda402a92ce047528a6d19073cecf21c1c2', datetime.date(2024, 2, 25), 2, 'TRACKEFIELD BRASILIA', 'BR', Decimal('119.90'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('13266d450a5cc4ceb7c6dc3359099c2ef6a6df76525220a583c4b6fd7509c584', datetime.date(2024, 4, 29), 1, 'Pix - Recebido', 'BR', None, Decimal('225.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1356cf5870ba64e696fb91c1dd371158f4bc6c6cdf0d4a6f44c451104b441211', datetime.date(2024, 8, 28), 1, 'Pix - Enviado - 28/08 18:53 Jose Reinaldo Da Silva', 'BR', Decimal('80.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('137c01a8898e5a9025b971d11cf0d0f044ba5113c82c5b4da10110095391567d', datetime.date(2024, 4, 11), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('160.99'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('13b6bbadb4912018c0f50e156ad256b6b5abd5500f41d2d46b15b9c5faa08042', datetime.date(2024, 2, 10), 2, 'CINE ARTEPLEX BRASILIA BRASILIA', 'BR', Decimal('58.50'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('13db0b5acf03a53a2086b1ab20792308a65e3ce95140acf1558763595408bc0b', datetime.date(2024, 4, 22), 1, 'Pix - Enviado', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('14086e9c03b360b7f2dbd4e419f543d495036114813297f131b9e1668c0bc83e', datetime.date(2024, 10, 31), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('3093.52'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('14402a729381935ec17d5a08d71a4cb6fb01d879ef683363a2ae9ea963e5afe6', datetime.date(2024, 9, 25), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('109.35'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('144115ed30c5a2f3fc8979161a9ea06def48454003ceb7892cfab8813d4f9595', datetime.date(2024, 12, 16), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('82.50'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('14547faff599984c05d91e2aebf35272970f5204cfc38bc2a92b78185530594b', datetime.date(2024, 12, 13), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('17.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('146aaec85672fc7f33bfcf32e446a9440661ca8364d4c686e2e8c7796c232c06', datetime.date(2024, 4, 4), 2, 'IFD*LOG CITY ESPRESS Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('149875713cec951b3ccd2778152c1fb113f8c91cc98c55a4ac7ff961c0604890', datetime.date(2024, 1, 29), 1, 'BB Seguro Auto', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('14bff9b56281649f8d3a8258425c0e2f9c84f0970b34cbd735d1c07f6233ed38', datetime.date(2024, 9, 12), 2, 'LATAM SITE SAO PAULO', 'BR', Decimal('56.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('14d47de099958d614d8fc69b51278606ae499aef045b23d61ae8d50be9fe4a8f', datetime.date(2024, 12, 2), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('14d793c132a444e08ba8c37a82eb0548ad12faa2c144f2a47f06784da57cecd1', datetime.date(2024, 5, 16), 2, 'CAPITAL BISTRO BRASILIA', 'BR', Decimal('59.03'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('14e056b211667bb5750da90a1660581c4e1f2bdd97d26d1e85b1bfe3c6cb1fd7', datetime.date(2024, 8, 21), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('6.18'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('1521d261c93a7badd34398f18f17588490de5eb184feb906f81bb248cd6ce6ec', datetime.date(2024, 7, 15), 2, 'LANCHONETE SERRA RODO COCALZINHO DE', 'BR', Decimal('43.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('154efecae5b8ac28212ff2b27f310311ada1cfac75cc749eef323a809c206a73', datetime.date(2024, 11, 29), 1, 'Pix - Enviado - 29/11 19:27 Overlock Digital', 'BR', Decimal('19.90'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('15601045df0e6d1fe581ca399a675a5b3f7aa0a4f425af4c573130cb14000579', datetime.date(2024, 10, 31), 1, 'Saldo Anterior', 'BR', None, Decimal('3083.94'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('156e2faaf1db0bd0364292844188522e78d31e91bb10fe51a48ed30c3214d6e3', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 01/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 1, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('158959d763dadc89f52d19ec13d521b5f285dadd165f30ae8a331c68be9eeaa0', datetime.date(2024, 9, 18), 2, 'IFD*NFE COMERCIO DE AL BRASILIA', 'BR', Decimal('275.69'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('15a2d735401a100192744ea0f36d248ea6067d183834d36bbd3515173a5bec3c', datetime.date(2023, 12, 12), 2, 'VISAO INSTITUTOS OFTAL BRASILIA', 'BR', Decimal('140.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('15ea8051574c6f60b9cf1f4ad216ab1576bfde3553042885a96962a3462fb0f0', datetime.date(2024, 11, 22), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('786.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('15fbb8566c75e7a2997e57a0675437b2b541dedc51f83a666340c06ce8060b48', datetime.date(2024, 11, 4), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.66'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('1632c52b8c5b2d7f6a23af201f2030e398ffa72b4268feca1699de3bf7079da3', datetime.date(2024, 7, 2), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('120.20'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1637f45b64f41f78fce356e0f075bc47c363506ec1a680e5f9b50e199d24d13b', datetime.date(2024, 7, 27), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('156.80'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('164367ad36f3a0144d068e856bcb2b632c4604392dc893375a521937387217d5', datetime.date(2024, 11, 28), 1, 'Pix - Recebido - 28/11 15:22 00091116546434 VESCIJUDITH', 'BR', None, Decimal('120.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('1655d506a60d806d9f02d3a7c8fd47dc4d7d21a258466a46947fcbf32a85ed40', datetime.date(2024, 9, 4), 2, 'Joelson lopes de carva Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('168b934ff247bfaa60e2bc95eb9ee70129993ad226495b81046500973c96db4e', datetime.date(2024, 2, 10), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('16bba76dcfb7523a3b3eea6cbe6078778a611531852bbdf054ae682ba161c523', datetime.date(2024, 5, 17), 2, 'PAG*Folhadesp PARC 04/06 Sao Paulo', 'BR', Decimal('109.60'), Decimal('0.00'), 1, 4, 6, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('16c52e11536c53707a33588216709476323200ee877275dc3752e6106977d275', datetime.date(2024, 12, 5), 2, 'HAPPY HARRY 201 SUL BRASILIA', 'BR', Decimal('23.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('16d70a509b0d005225215d9213e09b50049e16d91cf0c4e1913278dd552a2771', datetime.date(2024, 1, 21), 2, 'BLEND CACAO BRASILIA BRASILIA', 'BR', Decimal('120.80'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('170d1d25c74f0b12681eef44b7c2312604777474de2017dd01b201157b1e1214', datetime.date(2023, 12, 18), 2, 'Amazon Music SAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('172bb26897498929fd6daacdea9430662d7836e5c1b24bf3a943b0c8854f3230', datetime.date(2024, 4, 14), 2, 'PAG*XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('175572f17b5f1b9cd9582baff9e485e16a508ae5bef87beccaba5ff7b675a611', datetime.date(2024, 3, 5), 1, 'Pix - Enviado', 'BR', Decimal('169.30'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1761c46b84d4b38cf85fd5a0d192c5e0bca3adf9f73828d5e11aeff273a70930', datetime.date(2024, 12, 13), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('10.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('17787eb782f1b7449d865322981e513eec50e6cdac318b034167ef41c94fca72', datetime.date(2024, 5, 16), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.57'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('17836c42bd1a84fe02819b52c8d101589bee6f22ee5f7abef71b70290f52b365', datetime.date(2024, 11, 16), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('1783b1f9a482d60c65604d63e0dd44ed4524598275630b5688aab119052a31c3', datetime.date(2024, 10, 18), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('444.27'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('1794f68d4f20e2583b80292cfa60cb0602997cc512142b5a2ccc434648754f3d', datetime.date(2024, 10, 25), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('17c9568141f0d86aac7b4fb86a5c24abf7a039f27e85d8a2bc811a32159acc1e', datetime.date(2024, 12, 5), 2, 'STAR TECH BRASILIA', 'BR', Decimal('5641.85'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('17e8a79a1405a699393be3f6ebfe0e31fd0942f393ebf04046cbfad80ccdc809', datetime.date(2024, 11, 5), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('263.51'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('17f6a8cd12c52ba00b5d001680943a4325282915986321ee8c2117972106ba34', datetime.date(2024, 5, 17), 2, 'PAG*Folhadesp PARC 02/06 Sao Paulo', 'BR', Decimal('109.60'), Decimal('0.00'), 1, 2, 6, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('17fbd5a7b9305b5b5e86eba96f791306e74fe9917051b4845b224a009878d9a0', datetime.date(2024, 11, 21), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('15881.46'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('1805fc031342477fef61441239e65b9343eea22a7508bb5f7dc2bcd1f5a646a8', datetime.date(2023, 12, 18), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('442.29'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('1808bf6acf80f9bc0bea29cd537a5c02aebed765246a9dc4fdadda48aa926c4c', datetime.date(2024, 11, 27), 2, 'GRAN LOG EXPRESS Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('1849cc298b09e47d49d2175e95d88802743211ae64dff4841f78a47637eb3542', datetime.date(2024, 6, 14), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('213.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('186bf0d6d41c7d3d3cecb19cf371a30b5d736bfb8d20eae7ecd6faa084acd55c', datetime.date(2024, 12, 13), 2, 'Frigideira BRASILIA', 'BR', Decimal('54.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('18b49042e71af06eb08f80be7c05f4bff998693820a451166ff53f98f6c5d186', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 05/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 5, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('18cee8c1dec0daf99b9627233b040e25fea84d71cac503189218c7a59990a1b2', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 04/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 4, 12, None, datetime.datetime(2024, 12, 21, 15, 28), None, None, None, None, None, None, None, None, None)\n", |
|
"('18eaac6dde03ab51777539e695fccdc5f5d1af3d663e3d36544514603cd7a335', datetime.date(2024, 7, 26), 2, 'IFD*CR EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('18f7386dd7c65d0e45e0d6d6ed5dd29d72b8a0a37d3c0a5b832cd7c241eadd9b', datetime.date(2024, 9, 9), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.53'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('192c31e2c4feeb276c775cb82958a6c1119cc3c45ecef256b963050c50fbcb8e', datetime.date(2024, 8, 28), 1, 'Cashback automático cc - Cashback Automático', 'BR', None, Decimal('196.33'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('1950d57d0b80bfc76030cbbc0f85f40c894edf328f65caace93ba091616caff8', datetime.date(2024, 9, 18), 2, 'SCORPIONS EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('19696aeff5a4eb783409fbfec00b1739c2d9e3e5f86a9cf4ce79d3d63901e4b6', datetime.date(2024, 6, 8), 2, 'IFD*MARIANA PERDOMO CONBRASILIA', 'BR', Decimal('142.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('1973f9979d17ccbec626622d81e9c4a398a0aee2bf077aacba24c7ff4cf5657a', datetime.date(2024, 3, 5), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.26'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('19c0ecd922c946aff01e89cfa1e75e49d78c8493c9ad4d48525a4b53b88e942a', datetime.date(2024, 9, 5), 2, 'AnaCecilia BRASILIA', 'BR', Decimal('36.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('19e1b56203a98a005318b944aff55fc89660091630aebe7414ab2fa44d6b4d74', datetime.date(2024, 6, 2), 2, 'IFD*FERMENTO COMERCIO DBRASILIA', 'BR', Decimal('67.80'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('19f430ebfdb7de2ad9da4f1dba8e3baed0db98b2f0f2201d76223f42950830ea', datetime.date(2024, 9, 3), 1, 'Pix - Enviado - 03/09 15:51 Vibra Energia Sa', 'BR', Decimal('237.99'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('1a813fc18d600a2dd93a05d179d144be980f16c0c0159f496e4f43e4115aa422', datetime.date(2024, 9, 15), 2, 'IFD*RSNT MIWA RESTAURANBRASILIA', 'BR', Decimal('65.30'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('1a98996f476876d143f2f271aade0ccef15bce4fc4dfccf911686494d52ae4ee', datetime.date(2024, 2, 24), 2, 'PAG*RodrigoMiranda BRASILIA', 'BR', Decimal('92.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1ae9a4e4fd71df9218f998d6877d30c80a920699ac6cddc8b6806c35a12848c0', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 02/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 2, 12, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('1b3c428e41bdeeabc398484a691c5d01fd20871b5b1d142c2a1427276f8da546', datetime.date(2024, 5, 15), 2, 'UPREPAIR BRASILIA', 'BR', Decimal('300.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('1b4707ecd950e76f8869ff86d50a32543505336dee4f564ea0c03653872a2eb3', datetime.date(2024, 7, 22), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.98'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('1bc0e009230deeec0707c7518d3aeccb32c94a888b90c1fe34f74e1b10715208', datetime.date(2024, 2, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1bc45e74383a6273f082001c51f0cce9920c95b1be0a6e667d34e25031f4cdb0', datetime.date(2024, 11, 28), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('700.28'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('1bd4f221ac7cbe2c6625c8de33622debc91b97ff66bf9e82c99ded9a72c64dda', datetime.date(2024, 8, 22), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('1bde33e5106d5045be2e30b27a616464f5dafd9e973c361b083f614cc8c7477a', datetime.date(2024, 11, 7), 2, 'MERCADOLIVRE*MAVIMIX OSASCO', 'BR', Decimal('69.70'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c11541ea4dc98c68c4fdd4d698c1639e5bb89f005de8afe412622f1a5115745', datetime.date(2024, 8, 30), 1, 'Ações - Proventos - Pag Rendimento BBAS3 30/08/2024', 'BR', None, Decimal('1.29'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c1b70e195bac9e5c4de44988f0b35536b992d1f1887bd54422a367a287076c8', datetime.date(2024, 6, 21), 1, 'Remuneração sobre ações', 'BR', None, Decimal('1.49'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c2c9cf65bc52dbb5ac5945941e68b55986841d7c8cd54f5dbb2812ad8bfa564', datetime.date(2024, 6, 20), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('413.82'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c53bb07b00349b7f3b68b7d5ebd5cbb65df10a80fb53f754e132cb7d7742343', datetime.date(2024, 6, 30), 2, 'COFFEE BIKE CAFES ESPECBRASILIA', 'BR', Decimal('70.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c59e9c24e43a3f7bc500503cf3518b2bcfaa9a19dd5f2b09f5a93e8644e68c0', datetime.date(2024, 5, 26), 2, 'SHEIN.COM SINGAPORE', 'SG', Decimal('206.67'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c8af89734e0d687c27aaab0b21394d6abf3b0acd9eff5c01d5137c2f5366a70', datetime.date(2024, 1, 10), 2, 'RESTAURANTE O GONZAGA LUIS CORREIA', 'BR', Decimal('16.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('1c8c1fd61f3969535ad314744e10cbf26221817bc97232c777af17164800e953', datetime.date(2024, 12, 11), 1, 'Pix - Recebido - 11/12 18:56 00082840083515 CLARA DA MO', 'BR', None, Decimal('500.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1cc773e5c3c80f90df362bcb9477549538e84f679c8ff8fc1fc9c5efd024a245', datetime.date(2024, 3, 4), 1, 'TED Transf.Eletr.Disponiv', 'BR', Decimal('1386.18'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1cd737da826a63df9a14a94576c0db82e3d3082d6db6ecfa188dfb756c5cc630', datetime.date(2024, 11, 5), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('1ce81d009e9bdbd214b1673bef065b2c4746e388c13c0d80e75dd383b46c6daf', datetime.date(2024, 11, 28), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('3808.60'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d0eac574a5ff6209fd730c11bbced8127fc1dae390cf8907e8c5e34b1db028c', datetime.date(2024, 11, 4), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.10'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d24258166d477e6a2de62c9cb34e053e097ba4d6633d10d8d561592b8c1896a', datetime.date(2024, 4, 2), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('19.94'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d38ea992cf75783cf5b5406c8ff192dbfa712948694f246f13a63f54ec212c9', datetime.date(2024, 2, 16), 2, 'BIANCHINI AUTO PAINT BRASILIA', 'BR', Decimal('2528.26'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d3d4cf3f3cd22e689218cf932b270ef767aae483704345c49dd40ffb0e82d9e', datetime.date(2024, 4, 15), 2, 'VELOE BARUERI', 'BR', Decimal('52.26'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d59c4b558ac4a5f54039032a7fe6893efb7c18f9573e4806241c706a9054668', datetime.date(2024, 5, 18), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('63.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d5b9764760cb51ed1c86987452425ab3c894e35fc352e176cf4d3a6b8e5b294', datetime.date(2024, 12, 19), 2, 'AMAZON BR SAO PAULO', 'BR', Decimal('56.02'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d9c135bb5d8a692b159ad37fd312fd6c2a8731947e3e852ddf92fa25b92cf30', datetime.date(2024, 5, 19), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('143.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('1d9eb9a236f7b8e440187e690fa65241403c8484dcedfb30cbe8d190b90a6366', datetime.date(2024, 10, 24), 2, 'M R N PIMENTEL ME RIO BRANCO', 'BR', Decimal('85.11'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('1da1885f41391e22d786124db5edc881d4b896af9c525a347e452d922ba73a99', datetime.date(2024, 6, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1deed4a36c54bd4dff7716f382c615e31b6018a5c8de43e07dcc4ca1fdc9568c', datetime.date(2024, 3, 6), 2, 'WOW*SALE COMERCIO E SE Brasilia', 'BR', Decimal('155.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1e33f691d6b7acaf7182c0feb7e17ce178bb69bc91c8ce84c5b911c598c40291', datetime.date(2024, 3, 25), 1, 'Pagamento de Telefone', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1e4a1512a905c736891625fa2df489a001e8095a7a6bdf7337b0b028228554a5', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 18:09 80517439115 RAQUEL CALLAND', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('1e5a626f5918c38d52acca0a4a0b9fa95ebbdb04bb2cc9418fa30dd8fcd4df9b', datetime.date(2024, 1, 19), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('1e6e3b8f7c9181a41914d58808866e7e0a067c3300a485b6e6270255f11d7008', datetime.date(2024, 2, 7), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.12'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('1e84440d7d0e59d0ca2f03ffebd8cbcec96a4f7b925e77f8db1e6562d74ca8ef', datetime.date(2024, 6, 21), 2, 'EIXO MONUMENTAL BRASILIA', 'BR', Decimal('41.80'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1e88c3a8ebd15d151b7916dc25dbbcdfa782120abc8a5bae030c21016f348b16', datetime.date(2024, 8, 21), 2, 'Nestle Brasil LTDA. Sao Paulo', 'BR', Decimal('230.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('1ee5d2a5ead5ae5abc6510d68cbc72213753826f51305a1a1801f2228399fbb4', datetime.date(2024, 12, 7), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('75.01'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('1ef9a471e8ab0983512a8a062c7820194d781fc53bd84c91a841554fdddb8503', datetime.date(2024, 12, 2), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('24.36'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f28d3afa78f8b5adf6ff475fbfce09d6625434704c355822d47bd1bc48e9273', datetime.date(2024, 8, 6), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.99'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f3222a5dad6afe537939453e3f631b937614daa3a7624388b11ab76737c5aef', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 05/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 5, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f660eb787788a5ede6d8e89dd193cc02dfbe4a736817f2cdc26f88ff02752ed', datetime.date(2024, 6, 30), 2, 'IFD*LA GRECIA PIZZARIA BRASILIA', 'BR', Decimal('100.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f792a8db2e024df7308d538e29fad1225fc2b0643a88294f7963936467f0eab', datetime.date(2024, 4, 13), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('17.93'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f7ee7a62df206e08509e401cd6174a7d44183f3e3fb4797b6e8619d18e0c784', datetime.date(2024, 7, 5), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.94'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f88e01e132b5fb0221aa2d58703fe5ff5ec2286793d5d777dfd6b52bfd3f89f', datetime.date(2024, 9, 7), 2, 'Bacio di Latte-LJ3045 Brasilia', 'BR', Decimal('18.90'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f8a5c95245575cfe7b3a4531104380dfd896b868059193cc12d73a93771506f', datetime.date(2024, 4, 4), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('1f93ca8369d09f8177730712109c2c787243f74307adbdeabd007edb522d9001', datetime.date(2024, 5, 3), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('9.87'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('1fa205d62a2466169ca46f81f667d6ff74452c006face43c0cb6f227fb2ab44d', datetime.date(2024, 11, 30), 2, 'IFD*CHINADIFANG COMERCIBRASILIA', 'BR', Decimal('147.70'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('1fa701055f3b4c6402a4743682cd68ea100a45cf565287c6a141eb3c09beb174', datetime.date(2023, 12, 19), 2, 'MARIPOSA SALVADOR', 'BR', Decimal('35.90'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('1fcb5d5671d623041b5ad0f1d4fcdc2cdfb8f5121b93fb77bb9e0f9a3574c7e2', datetime.date(2024, 3, 27), 1, 'Cashback automático', 'BR', None, Decimal('192.37'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('1ff25dbb252361f3f24f8861e1588349e81a5de41e60917b54af1c7637880be9', datetime.date(2024, 9, 19), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('1fffaf9cffe2877208b5779bbc60e919754a48028119ccadb65f1e1170a178e3', datetime.date(2023, 12, 30), 2, 'PAG*BrendaRafaelaDe LUIS CORREIA', 'BR', Decimal('120.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('2006197d6805c9ee9a2f19007426dcdd4a25adde487656fb6a639f62214b3ab1', datetime.date(2024, 5, 19), 2, 'COCO BAMBU IGUATEMI BR BRASILIA', 'BR', Decimal('196.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('20074a43147328bd4390e9fc6e48519b522345f6c250f817bdb50f3c781e3751', datetime.date(2024, 8, 9), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('20214feeedf47b6f478073d950033ebecd4fa5960f2426a66b8ca8b3419dc8ff', datetime.date(2024, 4, 6), 2, 'PAG*MmCultura BRASILIA', 'BR', Decimal('26.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('204670105b051ae264b516ae96488bbb65f32ab894811d3cabdd50113a28a4d5', datetime.date(2024, 5, 15), 2, 'BP HOLDING BRASILIA', 'BR', Decimal('58.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('208fb8039b8e23a655b0d18f2a4e5ce1f6877653a38e39e3f5d03cf8d9964977', datetime.date(2024, 2, 26), 1, 'Pix - Enviado', 'BR', Decimal('386.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('20c66d8e86957f92efd7fff83e1ac5eb5253267ae04867149bbc61b6e89c894c', datetime.date(2024, 4, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('21599a528613d652aa31146cdb2705ee54387a56c77cc652aa0eff509dce1593', datetime.date(2024, 7, 11), 2, 'CARREFOUR PL2 338 BRASILIA', 'BR', Decimal('83.17'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('2167e7c459cb69fc6ce5366c1219486b9603e5781a1ecbe4c5cb371131efdaa7', datetime.date(2024, 3, 28), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('1.44'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('216fb84f823b0d7f866bb24d22470aea8ed06fdaf7e08f5158c3d5f2371fc312', datetime.date(2024, 12, 13), 1, 'Pix - Enviado - 13/12 08:02 Jose Reinaldo Da Silva', 'BR', Decimal('130.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('219089258f28256e178c46fcbb10a134e11b2154f7599be1efecd20ab4c1dca5', datetime.date(2024, 11, 6), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('219d36c92047ffc944261b408da8bf5af6a62abd516eef6548fdb16b44fee2e3', datetime.date(2024, 1, 8), 1, 'Recebimento de Proventos', 'BR', None, Decimal('3346.96'), 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('21b363befb4d0c37c2d5da320bc8768646bda7629138a8c9c522a5575def73d0', datetime.date(2024, 12, 13), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('25.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('21b96df1be405cf815a0a20294a969ff96d3a108f8dd558f4a1ec80a290a310a', datetime.date(2024, 1, 16), 2, 'PAG*DiogoLealPimenta BRASILIA', 'BR', Decimal('80.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('21c667ccca96d19584fe0ca16a9e12f47b37d36903b665d8b9ce404e5b494de9', datetime.date(2024, 6, 23), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('72.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('21d84b4fb571cda89311a773e496dc5a206dddc042e8755d65a99f1a3d5e3605', datetime.date(2024, 6, 15), 2, 'HNA*OBOTICARIO BRASILIA', 'BR', Decimal('288.50'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('21fedcdcd2c31ebbdb449fe060aed493ff1691b87aaa988cc9b78a88441a58f8', datetime.date(2024, 1, 25), 1, 'Pagto cartão crédito', 'BR', Decimal('22380.63'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('220a5b9b4387ce4f512f7e8543344ff0fe422e4b5af86a0f80af5bbc9111fe1d', datetime.date(2024, 1, 12), 2, 'BHSL CONVENIENCIA LTDA TERESINA', 'BR', Decimal('3.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('2214bc07b908a8a119fcb7cc96a3fdd9573cb9afd3dabc41d28bb1a3a2b6b455', datetime.date(2024, 9, 22), 2, 'ZIG THE GLOB*ZIG*NAPRA BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('221f4b7cc3aa57293afc5c85420706c58debbb4d3b5c2a2b2dec8fbf0cd1303d', datetime.date(2024, 10, 18), 1, 'Pix - Enviado - 18/10 14:26 Cristina Aidamus De Lamoni', 'BR', Decimal('250.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2225aa78d8ddb0245e07245459cc49d655882c7eaac01697ea9fb9983a6a5eef', datetime.date(2024, 7, 12), 2, 'PASTELARIA VICOSA IV BRASILIA', 'BR', Decimal('130.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('223f2112650f3e22f225ffd3deca50bd5b0b1f56b5e396c966cdd65145e81c59', datetime.date(2024, 7, 22), 2, 'REDE BRASIL DRUGSTORE BRASILIA', 'BR', Decimal('26.74'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('225cf0a933e5dd189fb9ad35abe3e1125029a839a0c60c811e95cb25c8d02655', datetime.date(2024, 10, 1), 2, 'BAUMMER SEMIJOIAS BRASILIA', 'BR', Decimal('119.80'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('225d3749cbabb84f9eb1e38e90a165ebcf55ed5c668e8fd7c3b22a5409f9259b', datetime.date(2024, 8, 4), 2, 'IFD*RC MELO COMERCIO DEBRASILIA', 'BR', Decimal('103.29'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('229d5da6f96ed27e0c035618eab672d1f36c6ac86d9f1a46937e2fe48064366c', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 11:29 Ouro Brasil Tur E Exp Ltda', 'BR', Decimal('299.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('22a4fe5e1022a9b831141a00f97e18aac73ff8ad2a261ef7563c8ab48d1cd71a', datetime.date(2024, 6, 18), 1, 'Pix - Enviado - 18/06 11:34 Anateia Da Silva Sol', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('22ab1b0ea688d8f85465107d00d6aed7a09f086b13faee94e400d0f2de486e7d', datetime.date(2024, 7, 2), 1, 'Pix - Enviado - 02/07 09:24 Cecilia Maria De Menezes E', 'BR', Decimal('310.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('22ec1a2ba87de37240e4f971ea0e9ad187fcafa31e0615ce203facb4429d8cfb', datetime.date(2024, 11, 27), 2, 'ArthurRibeiroPeri BRASILIA', 'BR', Decimal('90.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('22fa841875113c9c9922f0737eb7608b601a5067dd3b2643ee0ee125207051d6', datetime.date(2024, 11, 26), 1, 'Transferência enviada - 26/11 16:45 CRISTINA B SILVA', 'BR', Decimal('125.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('231606a1bb7d22b74767dbe573674e9c15c58b49a389e49a40cb1ab7a8746691', datetime.date(2024, 2, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('234091a8146c08e0ca57ed2d7e3b51377baa39878f6b87d58807998863248769', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 13:48 35172045104 Lucio melre da', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('23662c85b385a97a75037a8778e95f6c91e87870c0e70bd93bdceca5f60cc4f5', datetime.date(2023, 12, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('379.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('2377ea718e9e9fb4ec5bb9f1a69d2de5995f1585ad2560989c72c8c2255956ab', datetime.date(2024, 7, 2), 1, 'Pix - Enviado - 02/07 07:04 Utb Uniao Transporte Brasi', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2379350efc8b77614a169ad54246f4b48cde46ce28bd0a462b949de3e880ef5e', datetime.date(2024, 6, 15), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('2382f01567a0e4138a13483be61a541aa248c3504d3a5f8d9a4364a87b9a0017', datetime.date(2024, 12, 5), 2, 'CAPITAL BISTRO BRASILIA', 'BR', Decimal('132.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('23e4265f2c8fe074f9b7dc090a7002f6dc81f3f1a58b4795ee5d3f704278c4da', datetime.date(2024, 9, 27), 2, 'SUNSET BAR E RESTAURAN LUIS CORREIA', 'BR', Decimal('233.20'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2415dfcd00c195f0f5f4a591f7314d5d0e3d28290ec2f1e8ffbf2f8b8f232daa', datetime.date(2024, 5, 12), 2, 'Privalia Servicos de InSAO PAULO', 'BR', Decimal('498.46'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('2440aee13cd86326ef354776d5a849b8c75956cd47b22119e51c72b65c4350e4', datetime.date(2024, 8, 10), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('2455e4b8bb131d46e8177ef683916f5b82bb35509cd530fa1e1ca1294493049d', datetime.date(2024, 10, 15), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('14.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('2465bfd10c3dc90a37bbff768cd4b6b70063653ea84dcd3d8cdbe5115a148ac0', datetime.date(2024, 8, 30), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.91'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('247693db2064a485e4f0d6c3ffbb21ef54729e96a349bab453a26ae3e48a6284', datetime.date(2024, 3, 4), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('2.62'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2492c3c8ee1c7a5269683f60215af727e9e9914017f9b4731c94d8b49dc82512', datetime.date(2023, 12, 16), 2, 'ifood *IFD*NORMA MOU Vila Yara Osa', 'BR', Decimal('65.89'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('249740a20c1cc6c855299b9449c978e30b3b21bc4dd45a73f53552f2cb73991f', datetime.date(2024, 3, 5), 2, 'LAKES RESTAURANTE BRASILIA', 'BR', Decimal('147.28'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('249d3feb4a2561db184fc8ede3bb5ef5dc19355566f187ba204fdb48dc649d00', datetime.date(2024, 1, 7), 2, 'PAG*GinaLopesDeSousa LUIS CORREIA', 'BR', Decimal('127.49'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('24a5b7ca12f6a5a993ad27e4b9ecc8351bf4613226741de633149bc77bcc0469', datetime.date(2024, 1, 5), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('379.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('24d2fc4d2f28dabe80836858e1817bc61689a177f15241a10a9ba5b610b849c4', datetime.date(2024, 3, 21), 1, 'Recebimento de Proventos', 'BR', None, Decimal('5701.23'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('24e5610d109235ee50523f05f6fb36dc8a4819207eb3574d26cbcb87b441527f', datetime.date(2024, 9, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('24f4fe8c278d2e8b7c03fda531f007d74e7bf1ce9a2bdcd7977ea8dfeda9f07d', datetime.date(2024, 7, 28), 2, 'TREVISO GALETERIA E P BRASILIA', 'BR', Decimal('200.20'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('24fd8378e1820fe57b0ae99da1862c7f715a8015332c3ef8d0399a1718664e43', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 09/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 9, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('24fd98913cf7ca3ee6942bdd4246cd4710dca5750633a3b9cdc4dc020e363a99', datetime.date(2024, 9, 2), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('7.14'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('251ee8271bdf5ee1508dd10c1ffd6635c8fe4ad6879025a152e836ab0e10e312', datetime.date(2024, 4, 21), 2, 'UNIVERSIDADE DO PASTEL BRASILIA', 'BR', Decimal('36.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('257902c99d3f781ce54d03ae62fce36e265ad7e27db2512c068b95b05238063c', datetime.date(2024, 7, 4), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('258ee6eca81986a5fce50a5ab779ce33e3eaaf41b1b88c299342d131cf99de7e', datetime.date(2024, 5, 27), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('17876.15'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2592698b8f88230c62fc4a767c980a3a6ad3a5555f702bb7c04bee572c6e7bea', datetime.date(2024, 11, 25), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('89.49'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('259d5e79409504392f004daff5717dd8e86e60935fba2fdf2f710be5c645dc5c', datetime.date(2024, 11, 6), 2, 'DROGARIA SAO PAULO SA BRASILIA', 'BR', Decimal('199.76'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('25a741c152fa39f947a4837e202a6684ec6995355090d07358cb1a5789b257dc', datetime.date(2024, 10, 8), 2, 'Rafael de morais freir Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('25bbf43e25763718b999e3e528f1998d90d834e5e78d197d2c09e591f1398fc8', datetime.date(2024, 3, 26), 2, 'BIOEXATA FARM PARC 01/03 BRASILIA', 'BR', Decimal('583.01'), Decimal('0.00'), 2, 1, 3, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('25c7c89e867838371184980b8fa4d0497eb2b5b6d1dc82b3885f7db738c60e7c', datetime.date(2024, 5, 6), 1, 'Pix - Enviado - 04/05 16:20 Utb Uniao Transporte Brasi', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('25da91b037433974916a4c5209b15f009e4d942d1165502c1853abe590bdc597', datetime.date(2024, 7, 9), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('26.53'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('25f6ffc1e5f439d86cbb23054f70d09b73728e3f9e45b9af6d6e37d104c1b88c', datetime.date(2024, 1, 14), 2, 'POSTO SANTO ANTONIO SAO DESIDERIO', 'BR', Decimal('147.94'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('2609e72c8334ff24c5deeecb3051feba26184c21e60b62b779617092145c5729', datetime.date(2024, 11, 10), 2, 'ifood *IFD*TT BRASIL Vila Yara Osa', 'BR', Decimal('94.80'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('26195f313c3507ec52e78884c538ecce83c0e36f0397081e7e003a74e37b7e7c', datetime.date(2024, 2, 22), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('45.90'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('262bfd19828e8b8a342dae3e7bd3e39232a406c985188b82e2fb73d26ecf0ee8', datetime.date(2024, 3, 19), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('105.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('2633fe21f8b99096cc987780ca7e5c71029dd5532485415b8ee3cb1357cd42f1', datetime.date(2024, 2, 6), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('2643f048a0477d32dfbd55d2929e8b681b00c54151dd877aa596b9df791757ca', datetime.date(2024, 6, 24), 1, 'Pix - Enviado - 22/06 09:33 Magani Schimidt', 'BR', Decimal('18.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('26992a6fac0b62d7502758ee61cd61fc887a26fb915a1c73c8b5d5ab17290a3c', datetime.date(2024, 11, 9), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('16.75'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('269dced90ad2b789a6418ec13aa960ed8aa49db6583190b5007cf8548e1be511', datetime.date(2024, 11, 25), 1, 'Transferência Periódica - 23/09 CRISTINA B SILVA 003/010', 'BR', Decimal('280.00'), None, 1, 3, 10, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('26cf35e97c30cee9108be1154e70900d51a1eee2535fa0080232e66f8a27c563', datetime.date(2024, 4, 22), 1, 'Pix - Enviado', 'BR', Decimal('220.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2714e4083152416a60fa791601c532d9946db6df0c5f9c90581793f5199492c7', datetime.date(2024, 7, 25), 1, 'Pix - Recebido - 25/07 11:22 00002491295156 DANIELLE VA', 'BR', None, Decimal('80.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('271e3e8c613d5e8f25cadf271993e0f06367e6e0cd76336d42996af349d839e9', datetime.date(2024, 5, 31), 1, 'Pagamento de DARF/RFB - RFB - PAGAMENTO DARF/RFB', 'BR', Decimal('6854.93'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('27337b3127300189c63d6ea98de09fece3bc5ea2736cbac5412c4e057f25949a', datetime.date(2024, 11, 28), 2, 'AMAFARMA BRASILIA', 'BR', Decimal('1000.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('274de98542596bd98855d282fcb320fa48d913b4f6a5f0890fff55e984465be9', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 06/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 6, 12, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('275d2b3cf5d706140db4854de5001b05759966695bd65e715b3490e3fac2d8c8', datetime.date(2024, 12, 2), 2, 'MERCADOLIVRE*EBAZARCOMBOSASCO', 'BR', Decimal('103.69'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('2777ed3dabf914b7f5c1295d8352a079e711ec44500462198b30c97fa94a80be', datetime.date(2024, 2, 23), 2, 'IFD*LA GRECIA PIZZARIA BRASILIA', 'BR', Decimal('215.69'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('279b97ca98d02be056a919228f0b5339f419e454723917f3e9cd8251b0535caa', datetime.date(2024, 11, 20), 2, 'MARIA DAS GRACAS PINH BRASILIA', 'BR', Decimal('28.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('279e8418bc3988fb5fcd8a53906d46fa338d81c3162133021893e4aa8089ba18', datetime.date(2024, 6, 25), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('199.97'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('27b7c4a21b4a677016d7852b01e18cb2e9dbe4f9348e159666ea0e00aaf51b90', datetime.date(2024, 11, 29), 1, 'Movimento do Dia', 'BR', None, Decimal('94.55'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('27c6946a1b25eef9286c3b533e26ad7f591d68f4003d855402495f0696a0466f', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 09/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 9, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('27dabc69cfccbeb71ecfaad2fec019d166f3225424430f6f9c49afeae3e1fb06', datetime.date(2024, 12, 17), 1, 'Pix - Enviado - 17/12 09:05 Maria Da Gloria Silva Lima', 'BR', Decimal('225.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('280762977e3989e1e012262e78746f514ddf5f7235f1966cb209e76c305d214e', datetime.date(2024, 2, 14), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2844af8867f6819250af1fd8b46d98719d117e20093e02c5ca928db772e4d2db', datetime.date(2024, 5, 2), 1, 'Pix - Enviado - 02/05 14:18 Taua Hotel E Convention Al', 'BR', Decimal('45.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2899f65092ac697d156a81093a429b843224e47af079fc7988159ebaba44a2df', datetime.date(2024, 4, 3), 1, 'Pix - Enviado', 'BR', Decimal('400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('28aaa553773559990dc18fa9f4be544827bf786c73970d0de71334a8207b9bd8', datetime.date(2024, 9, 20), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('444.27'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('28edcd93e8a29ed0349bfabbc70d98d61e13340d261ade60bc95446944c611a1', datetime.date(2024, 1, 2), 1, 'TD Taxa Semestral B3', 'BR', Decimal('13.17'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('28ee7c405f01563c5df04ff3563b083eb6f6fb516ba143d766bcea9883f921d3', datetime.date(2024, 5, 30), 2, 'POSTO SAO ROQUE BR 08 PADRE BERNARD', 'BR', Decimal('237.53'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('28f7e2546ff0f572f793fee9c00af36d6d9779d2d9f49825ba25b6a14046be7e', datetime.date(2024, 8, 22), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('2757.92'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('28fbe44197bfdeaf78b716de0b7c98c37d9592c03d85a858383131c6f0d66f41', datetime.date(2024, 2, 6), 2, 'PICPAY *UNICOMPRASINT Brasilia', 'BR', Decimal('107.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('2935e5c27691d18d660971e77c091df6b8cd14d972b5f9b0012a5422833d79a3', datetime.date(2024, 7, 7), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('24.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('296a81891bf6c81bcb8343fa14ee5eb2f1a2eb7004ab29e392a65da80a53169f', datetime.date(2023, 12, 26), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('5.37'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('297f6f0bbc9d9d1cb322ab76afc993a9919e24d22032fdd8465b3f8d92ce5a80', datetime.date(2024, 2, 15), 1, 'Pix - Enviado', 'BR', Decimal('60.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('29c1741887c95273b5675032503fb1616c15f2542fbde0ca07fe5b11e1d61f9b', datetime.date(2024, 3, 12), 2, 'RESTAURANTE MACAPABA MACAPA', 'BR', Decimal('46.72'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2a23cfc80f47ab9d7c8c4c3bb14d48001061ffaea75946a40a3528655ab0a8f5', datetime.date(2024, 10, 11), 2, 'LOG CITY ESPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('2a2ba02b54029e1d60118c54e7b36cb97ea9bb9afc86255eccca609be46ba2f4', datetime.date(2023, 12, 25), 2, 'Privalia Servicos de InSAO PAULO', 'BR', Decimal('375.40'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('2a2ee06843b9db5aa3d3ef29c008ff24930989013c29f738725e07c1cb6f9718', datetime.date(2024, 5, 14), 2, 'IFD*CASA ALMERIA PADARIBRASILIA', 'BR', Decimal('104.50'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('2a6888fa5e080bd89a408573bdb9f0ae6e0e1c8191363ff9bdbaf0fb1175c503', datetime.date(2024, 8, 30), 2, 'CIA DA TERRA BRASILIA', 'BR', Decimal('176.51'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('2a858dac6eafb63edb2524002786bf2970fe19df89a3edd8ebd27c2ffab4a8b7', datetime.date(2024, 1, 17), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('2aae11cf7dd1757bbd4a4085e7352cea9afa7a7a8e403447b2968ff236628642', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 02/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 2, 12, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ab643ddadc671e587ca77a93019fbcee2435e4b8aaac1d161853cae7097938a', datetime.date(2024, 3, 4), 1, 'Pix - Enviado', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ab8e99ecde4ac58164466262b379725b1bab11e895fddc4f1244daff3b0e899', datetime.date(2024, 11, 27), 2, 'BRB MOBILIDADE METRO BRASILIA', 'BR', Decimal('5.50'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('2abf69a3fb9c57989a8b01497a14bae2427e628e77fe3e9dd7e641679e6bae61', datetime.date(2024, 4, 1), 1, 'Pix - Rejeitado', 'BR', None, Decimal('700.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2aeaa30eeecb186dce7f572601efe265a4cb0b591d8aceaef8c7700188c2bd73', datetime.date(2024, 10, 19), 2, 'FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('2aed99dc05f43cf48469e585c7990daaaf37ce8b973ef3182b039939d3947020', datetime.date(2024, 2, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('2b6b3b577ccc4a37d721abd3a872a9de6225f807d2a3ea72ec63224ac7198a09', datetime.date(2024, 12, 18), 1, 'Pix - Recebido - 18/12 14:27 18617190272 ESTELA MARIA B', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('2b6e24f5d469100875da11d9f061501e2bfc54c18822eff1b41d9982a96a4dfa', datetime.date(2024, 4, 26), 2, 'IFD*VINNYS PIZZA E ALIMBRASILIA', 'BR', Decimal('122.99'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2b7225d2c299c4aef249d0c52edfb01e3dbef8bbb72d982579165ae397a2e364', datetime.date(2024, 9, 13), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('43.78'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2b751946890bf767bf09df6b635b8d363fe3b561c46413bfe709bef3030eda00', datetime.date(2024, 10, 31), 1, 'Movimento do Dia', 'BR', None, Decimal('94.55'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2c1e9033de72c323f6a6883182a8061c404c303cffe2d1c5b7f1a560421caca9', datetime.date(2024, 10, 29), 2, 'PARC=112 BRAS PARC 02/12 BRASILIA', 'BR', Decimal('419.00'), Decimal('0.00'), 2, 2, 12, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('2c22af7ec0a8b5170c70abf0408550f305c16c38888a37fcd3aeeb5d100d14d0', datetime.date(2024, 9, 10), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2c42350f71e3f244f8692331542ff15d475b7c648c5d475da495200676f3c289', datetime.date(2024, 8, 19), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('135.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2c4818e40893984a957131ab095212d27caf83ee93e1a72926716bcae184d675', datetime.date(2024, 1, 11), 2, 'PG *TON MATHE PARC 01/02 TERESINA', 'BR', Decimal('291.00'), Decimal('0.00'), 2, 1, 2, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('2c54c449bc0fe9c5d8588543ee936e0b5e8da16ea4e15fdb5c6c9d35555f6033', datetime.date(2024, 10, 26), 2, 'T.T. BURGER BRASILIA', 'BR', Decimal('177.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('2c78fc5c7ee88112b42bc462368e6c63e6f7f614dc99311ad68ccc8dd218f103', datetime.date(2024, 10, 21), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('12149.23'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2cbb9fe290ea7d20d2359ac039ed5cc97468e9f5c40dc4c48c24f6117b92e0ec', datetime.date(2024, 9, 14), 2, 'CARIOCA DA GEMA RIO DE JANEIR', 'BR', Decimal('177.10'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2cc0858bae395f22b79499a41a7380ffff693ba909b980ddbbf9ebb7ff2cc034', datetime.date(2024, 8, 27), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('349.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2cc9e7a3dec2a46109f74f9d62252703876680bdd4b98bd1f8be4b0a6ecea33d', datetime.date(2024, 10, 10), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('7.32'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2cca0219a0b259f8f690e676f6a23fdefd9d550618d3c67bc6a77da12e29a2f8', datetime.date(2024, 3, 3), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2cd9b470293320263fb0425f72e5b99ec322e6011dc2ccca404d85c1c7cb4d2e', datetime.date(2024, 6, 15), 2, 'PAG*Fazenda BRASILIA', 'BR', Decimal('459.23'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('2cfba4cc7eb3134d9d01212e4105ea2510dfd97e624304380acd14c42d3b2983', datetime.date(2024, 5, 9), 2, 'AURELIO DIAS BRASILIA', 'BR', Decimal('259.80'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2d36ac405e39cce60a82f24b27467d3618e80d8847a761b0304f025c386f0749', datetime.date(2024, 1, 15), 1, 'Pix - Enviado', 'BR', Decimal('105.60'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('2d6968f7692674160e815340c1489dd499f82abf91763eff35f807b3eaccae94', datetime.date(2024, 3, 28), 1, 'Saldo Anterior', 'BR', None, Decimal('35003.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2d7c05f6c0090dd67c63dca17752aab25024aaea7d6af776ff3a1384b07c8dc6', datetime.date(2024, 5, 18), 2, 'NETFLIX ENTRETENIMENTO BARUERI', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('2d9ff5edb81d250909ed15842761817ba328b3facc86474966297048c4c58ba9', datetime.date(2024, 3, 26), 2, 'BIOEXATA FARM PARC 02/03 BRASILIA', 'BR', Decimal('582.99'), Decimal('0.00'), 2, 2, 3, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('2dd864a93ce82fc9a27443d2883c9f10a6dc839fc30bc479a2ef2faf2e36fdb1', datetime.date(2024, 8, 20), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('226.96'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('2dec09a66075b86a1abf9c9eec4992dee78e6d0d1b93a564e35e6ee1f93e7fd4', datetime.date(2024, 10, 30), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('2e3aced2944c3452afd68f8ef2811a3a0bd1fe1ee5dfcca4361654fa275c9ae4', datetime.date(2024, 11, 22), 1, 'Saldo Anterior', 'BR', None, Decimal('41173.71'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('2e4e47d30341ddd3acde26198b4b83be9cb9bc4916102c12af6230efd7b5e8aa', datetime.date(2024, 11, 25), 2, 'GRUPO FARTURA DE HORTI BRASILIA', 'BR', Decimal('33.97'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ec1e48c6128974fb0762b56c6a31c12a81fc3d3f1c29d1fcc563d9ae3062563', datetime.date(2024, 7, 15), 1, 'Pix - Enviado - 13/07 13:27 Francina Noleto Aires', 'BR', Decimal('150.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2eca8401ddfa29c116a752034bfa21325dc6136b74496e2de3080a7748377ccd', datetime.date(2024, 10, 6), 2, 'PG *ZE DELIVERY ZE DEL SAO PAULO', 'BR', Decimal('50.23'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ecb1c7d5c8de736bfa6535f5de86b0b365be681083fa08da2a82556b0954bd5', datetime.date(2024, 9, 2), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.59'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ecc11204857c11feb71f23431c0af4e030d26ca9f3a8de77f426a25a2b4d21e', datetime.date(2024, 7, 22), 1, 'Pix - Enviado - 20/07 12:06 Camisa 10', 'BR', Decimal('15.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ed2d8898ad990f1e613db09929ae8c67b23b715412285b4fb09b5e2504804ab', datetime.date(2024, 9, 30), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.15'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ed46148a6e6dc9066923bf184062dfe27322cc0dc5156e7c3b352ca891406d3', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 11/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 11, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 6), None, None, None, None, None, None, None, None, None)\n", |
|
"('2efc5afd8c51baf078656d3065ffa1e53094a9da1ac4e2283a74f7eaaa447c25', datetime.date(2024, 3, 25), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('14.55'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('2efc813a85ea4284f207523c5dd9a97cbb1f41f97f81c47be1f605bfd423de37', datetime.date(2024, 7, 26), 1, 'Pix - Enviado - 26/07 13:37 Celio Machado Pires', 'BR', Decimal('180.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2efd087d64f439760ef5b03d75cc549be4dac403ab401b186faddd7249a4c07e', datetime.date(2024, 10, 16), 1, 'Pix - Recebido - 16/10 10:19 83941800191 FABIOLA DE SOU', 'BR', None, Decimal('72.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f150e82b5717ff905c274ac3165ce5da0adfd29f01afbd9cb6ecc9c8c786892', datetime.date(2024, 12, 18), 2, 'NETFLIX ENTRETENIMENTO BARUERI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f15685a475acc44822dd6e19bebd73971b59f3105a1c846ae56d45c53987ec8', datetime.date(2024, 8, 14), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('65.99'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f27bf3b76902378d5357be41c17a4d61c96ef2254025fa0cfa71c4f89733264', datetime.date(2024, 4, 29), 1, 'Pix - Enviado', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f518a712f12ba66a7f5378dba7e80f390d0d88e423f5d9d2529f51caab6aabe', datetime.date(2024, 5, 26), 2, 'IFD*Wellington Firmino Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f59f8149bd1b25c4df6a88b2a8a9aeac704d875ea0f78d61647f2e3722ec73e', datetime.date(2024, 10, 28), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('14.95'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f5f0b09adacca0fe2092cfff44e2416baa65899972410a44f102f0beb8dc575', datetime.date(2024, 3, 26), 2, 'QUEST 01/10-SNOW BELO', 'BR', Decimal('-493.41'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f80c64933ed9dfc5dfa3925dc3e5cd0f6612ef81cee769b56b42de78cbfffcd', datetime.date(2024, 1, 9), 2, 'CARNAUBINHA PRAIA RESORLUIS CORREIA', 'BR', Decimal('240.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('2f935513d3b398584e2ae8fd54a700f97236e1ae4bd1ee814294830fb8a4ab4f', datetime.date(2023, 12, 23), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('40.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('2faac9e574b469f48c6cf676d753df9b7e5b24670e2d199e4af92f57470f6bde', datetime.date(2024, 9, 30), 2, 'ZP*FEDERAL GOURMET TRF BRASILIA', 'BR', Decimal('19.43'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2fdd028b70e566b37694ac1a09b5da0b84bb10dfb686b1b0dedb764f34a998b0', datetime.date(2024, 5, 21), 2, 'PAG*AUAUQUEVISUALPETS BRASILIA', 'BR', Decimal('460.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('2fee3591e795afa37ce6d812cee2d53444ad1d0c7c51272e5c383fec3bee373a', datetime.date(2024, 9, 13), 2, 'OrlaSportBar RIO DE JANEIR', 'BR', Decimal('18.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('2ffefdad264b851de7bf4b422400e7af2b40b3128b2e4ed2c1658dfba1ed7a3d', datetime.date(2024, 8, 14), 2, 'WINE GARDEN BRASILIA', 'BR', Decimal('261.51'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('3011eb20c4ea7709b51b48a3b67620ee96ec0464de85c7affe82cf377e596b4e', datetime.date(2024, 6, 24), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('522.65'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('30188fdb16fdeb5813d68e29950843212effbf591278b99cc18128d61dcb2f90', datetime.date(2023, 12, 16), 2, 'AMAZON BR SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('30534449fb54fd8eaee006532cca1b645cbe4203b923c7aeb2116153a8975c46', datetime.date(2023, 12, 14), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.93'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('305a6dd3f5890a56d6be236218b5a33562dfd3f4cdf858093b2f40bdc0fadfbe', datetime.date(2023, 12, 16), 2, 'DOSE FIT BRASILIA', 'BR', Decimal('123.90'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('306243b405717d14ee293c96ee0cfd8d17ddf6bf14b6fb071ab34c690329dcef', datetime.date(2024, 3, 20), 2, 'REDE BRASIL DRUGSTORE BRASILIA', 'BR', Decimal('512.73'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('3066debfaf903643be1ea6ed16f9db99e8687abf31a886513a2c23124f7c36a4', datetime.date(2024, 8, 20), 2, 'MERCADOLIVRE*ROMEROSHOPOSASCO', 'BR', Decimal('125.89'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('307e1844ace1b0c1959a7fce30d9b0395ecfde2cd0bc680d4820fd58594fc9e1', datetime.date(2024, 2, 14), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('30a8f7a3dae4ed403dc7b362028c001de27252341c451bb5819dfde7702fce81', datetime.date(2024, 7, 27), 2, 'MP*MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('30d40e1369543691b6aafbc99af3ee5061c5b79580e7971a93b312be8231a1d8', datetime.date(2024, 8, 20), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('30dc082c4c8f9a1f4d5a62825918d880228ef3804cc4e8f46de1ccbd4658de0b', datetime.date(2024, 10, 19), 2, 'WOW*SHILOAH SPA Brasilia', 'BR', Decimal('930.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('31063fab35f5da92cfb88b376ecddf90edb098bba03f8ff5ffa9e196b0852d4c', datetime.date(2024, 12, 17), 1, 'Pix - Recebido - 17/12 20:01 00035172045104 LUCIO MELRE', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('311a8e63f3c6c7b80c8b3d5f947348e2c54c36b1372f9b295275ae2143a442db', datetime.date(2024, 9, 26), 2, 'LANCHONETE LILI DOCES PIRIPIRI', 'BR', Decimal('11.50'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('31236bfa478d84364f0751268787a1a234523171ec6b64c7a211a73e9fc092ee', datetime.date(2024, 6, 6), 2, 'PICPAY Dalila Resend Sao Paulo', 'BR', Decimal('587.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('317549c105eae4dfc6833b95fce875691edbf1882e6e31d894882f49b5a6d1e3', datetime.date(2024, 8, 26), 1, 'Pix - Enviado - 26/08 21:34 Livepix', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('3192a3e9a5d8c9b92b066cfda32780b84a3d0491e6287859fbbb4d4b84c49b89', datetime.date(2024, 1, 8), 2, 'VITRINA FILIAL TERESINA', 'BR', Decimal('309.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('31cbb2b1658bedd721b2654b425b7c7112369b09d8b4055605b71233681abe71', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 14:12 18617190272 ESTELA MARIA B', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('31e67a2fd229f81750408774bcfaca4f4128011f82e511e86fd3fd35b9f29f0d', datetime.date(2024, 12, 3), 1, 'Pix - Enviado - 03/12 06:57 Maria Eliene Oliveira Port', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('320f868da6d51f11ea6d4e4d7e0563b69d2948d8518384e27a98d0af6894095b', datetime.date(2024, 4, 16), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('15.49'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('32609a77d39079d23b16b05866670d8d02e77db946fc87e6c09a5a43109eb504', datetime.date(2024, 6, 30), 2, 'COFFEE BIKE CAFES ESPECBRASILIA', 'BR', Decimal('6.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('327bc7fff19d03c18f8be49cfa57b542764823977b9c87240948c7751d5ee3fb', datetime.date(2024, 4, 5), 1, 'Pagamento de Boleto', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('32a32d11adbbae3a4c5558bdbf16ead02c1a9f0fef0c37b2b6fa0a7fcbbf6bcf', datetime.date(2024, 9, 3), 2, 'DA MARINO DF BRASILIA', 'BR', Decimal('97.40'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('32bea548a9feb64fb3757a9fef13544b25779b88afaa25652398097ab9c42e89', datetime.date(2024, 5, 9), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('9.82'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('32c662643a7b5fd398d3d3719ca2e3e4f1beec7c2f42108de82880bd8b78d6d3', datetime.date(2024, 4, 25), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('23.25'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('32e4d3d11efed5603e6f4ea5dd6534951b1d848a98cdef134e0f4d359b7f4726', datetime.date(2024, 1, 8), 1, 'Pix - Enviado', 'BR', Decimal('257.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('32f03588534373d246b83c507c2cf3ab12ed0f7c6d9c29385b004b19913daa52', datetime.date(2024, 10, 16), 1, 'Pix - Recebido - 16/10 06:45 00048916196604 CELSO ALVES', 'BR', None, Decimal('72.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('32f3c2ba8e2859c5445cbe59e1bbc67d3295a9a0d670bcaa4607cdb359c5549f', datetime.date(2024, 2, 16), 2, 'IFD*FERMENTO COMERCIO DBRASILIA', 'BR', Decimal('92.70'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3324671d035362718b8ecb8952ae017e14108e5c47f063a289743286ba4ebd54', datetime.date(2024, 12, 4), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('106.88'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('332dac407e426a315b68d782dabb1df174993e11f194c8b1f3a5675a7e005870', datetime.date(2024, 8, 31), 2, 'T.T. BURGER BRASILIA', 'BR', Decimal('111.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('3335c3c5f0a628716b9525f3379d20d83ae7e16de92b31ea75bbe8a52a78014f', datetime.date(2024, 2, 29), 1, 'Remuneração sobre ações', 'BR', None, Decimal('1.57'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('333c3554a64343e2c9d7a318ea4fd9e2e79b04355d0861d2f6d74743f7f198c6', datetime.date(2024, 9, 10), 1, 'Pix - Enviado - 10/09 10:09 Utb Uniao Transporte Brasi', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('3379ec0c3dcfa0a27e82365a5d6f43b8c5687ee55481e3d312a398db99c12ed1', datetime.date(2024, 5, 20), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('11737.71'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('33827af4bbc7fdf34eb3536a99c919454e6b7e64cc94248ab7695ce21020559e', datetime.date(2024, 6, 3), 1, 'TED Transf.Eletr.Disponiv - 104 2272 28986008149 MARIA ELIENE DE', 'BR', Decimal('1386.18'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('33904aa34ae4bbd85720e675fe6ffb0190bbec9bc401c19834d8fcf891cf06cb', datetime.date(2024, 6, 27), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('13.64'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('3422b58e20de800b68e0ef967f4ea62193a0830a4c917e953a53de68a7923ba9', datetime.date(2024, 5, 31), 1, 'Saldo Anterior', 'BR', None, Decimal('13477.32'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('3437eb13b66a2f9821a1eea5d1402810341b1630b59bc35f1dc5cd79d0750805', datetime.date(2024, 3, 28), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('114.34'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('34381d2a1659c2c2843c6cb9286c26de4f3159d5123a10c5b42b4da35e7e013d', datetime.date(2024, 10, 4), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('14.42'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3476a418b8d6cad8f954da712c77bc4e2d269ab3688946dfb7cdaed5494f2c60', datetime.date(2024, 3, 1), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('59.49'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('34af45c62ca9d20ec94a54c985d1999e1bf99a7d7f78e3a3616092ec9751dc26', datetime.date(2024, 8, 3), 2, 'HOT DOG CLUB BRASILIA', 'BR', Decimal('39.90'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('34c987f0c12e8c526b138e41f171f0785e1e79d6c40d575b4fa30b997c67a592', datetime.date(2024, 1, 6), 2, 'MERCADOLIVRE*2PRODUTOS OSASCO', 'BR', Decimal('78.90'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('34d59ebcd4f4583cbeb94d80003e0b6c02ffb07a3abb3a005b48de8a8a027aeb', datetime.date(2024, 10, 2), 2, 'MERCADOLIVRE*SDNCOMERCIOSASCO', 'BR', Decimal('159.60'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('34d7c122f0d1c8f5d5f32605c9d202adda244bf5d68be1e169557272c1e76ce8', datetime.date(2024, 12, 4), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('18.34'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('34f072fb297a83a7a61ed6c268fa87ddf9f43dce457c476637c45db47cd884bf', datetime.date(2024, 12, 1), 2, 'Amazon Music SAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('34fb12680e61ef27af7b3d7f49486c162930f3922eb85947075945194076158e', datetime.date(2024, 11, 1), 2, 'SHOPPING ENXOVAIS E UTIBRASILIA', 'BR', Decimal('209.97'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('34fccc15276b4b6d632319a2187edc78671b3986346d61416a6114152ed5c59f', datetime.date(2024, 11, 14), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('7.72'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('35195d3b4db2142390233d004e1ecb514c85ede93fcfd9f157d53d505e150a0c', datetime.date(2024, 1, 24), 2, 'SSP DFA RESTAURANTES B SALVADOR', 'BR', Decimal('118.80'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('3526f106f566858bc9545f7703c9b30d07d90899ac2607f77eeda86b12146e40', datetime.date(2024, 3, 3), 2, 'IFD*iFood OSASCO', 'BR', Decimal('7.99'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('352fb8e4531aae793a8372681d2b9b1b4f8fdd441cbe1f519880a3f85316af8a', datetime.date(2024, 11, 26), 1, 'Transferência Cartão - 26/11 13:07 Transak', 'BR', None, Decimal('532.43'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('356fee12e4ff86bc8f965293a18e673a1ae5448c7a2326ea3c441baf8409591a', datetime.date(2023, 12, 23), 2, 'TETA CHEESE BAR BRASILIA', 'BR', Decimal('161.84'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('35710784dc4c5ec25cf80f0def6e411a506dfa625d7d6fb3a7672842e4e1e226', datetime.date(2024, 5, 27), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('358e563ec5c9278ce90db6013b521d821ea41a4dbc49038466ffe136caa78543', datetime.date(2024, 8, 9), 2, 'BONNAPAN SEU DIA MAIS BRASILIA', 'BR', Decimal('23.08'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('35953f06cf0254a59a6a38252aa8920562c85ffc773f281bd72193021a957c4c', datetime.date(2024, 3, 16), 2, 'IFD*MARIANA PERDOMO CONBRASILIA', 'BR', Decimal('80.79'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('35b2de2466d47c7a379a42ed6c776a96790e4a6327802ddaf565684d7c8f851d', datetime.date(2024, 1, 3), 1, 'Pix - Enviado', 'BR', Decimal('840.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('35baaf0bd8d8dfd32f1f12bd6f1c47546bce0803b2fdfe72b2939693baa27bff', datetime.date(2024, 8, 25), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('101.74'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('35bd46a6d62d88f088b370dc4c690d693033015b81fdc1415f5bd77f28a2e032', datetime.date(2024, 1, 25), 1, 'Pix - Enviado', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('361780fc1d19279933700758e50a6b14486c584676d62cf002517715702cc061', datetime.date(2024, 9, 27), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('365aa26ba4b40395fae3288e9f9bdc92740aebf11a10ab09b5fe39b603004c8d', datetime.date(2024, 8, 22), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('39.91'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('36796dbc91d51a50360d5e06ebce07400935dc79db91fff04a0f95d05bcbb4ce', datetime.date(2024, 10, 30), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('27.58'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('3689c6889cdf2fa9bea9417f80343ac69506766ef68b646b91cd49041278ffbe', datetime.date(2024, 5, 31), 2, 'VIA DEL CAFFE BRASILIA', 'BR', Decimal('34.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('368f7c5153773d010d1f60947f164188c38cd02f663cefe99fd178aaab95406f', datetime.date(2024, 5, 9), 2, 'MIAMI PRESENTES BRASILIA', 'BR', Decimal('22.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('369e4c1f016df2a4f8fc263f72d8fb9020d13f2953c0db8bbad584d02738233c', datetime.date(2024, 7, 10), 2, 'PAG*Moca BRASILIA', 'BR', Decimal('125.40'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('36afd17a538f3ea90f4b7e7a8110cb9aa89246b89248ee43f3854c4a45f284f1', datetime.date(2024, 4, 30), 1, 'Pix - Enviado', 'BR', Decimal('234.56'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('36b471951cad0d9511ebdbbd6921cdc53a94671eae0e00ba7fcaad6f5601ae55', datetime.date(2024, 11, 12), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('10.80'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('3704f1e7a29c31728da30524d68eb5370c19c9c886ce9291e50ad85fb3bef8d1', datetime.date(2024, 2, 13), 2, 'PAG*Aslog BRASILIA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('370941b1b86f1c54b5367fddfde4cc96ce8624a8076257280d56157cf82dad9c', datetime.date(2024, 9, 20), 1, 'Pix - Recebido - 20/09 08:30 00044378521172 KLAYTON CES', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('370a55cb05e7bf4c6323d73f3133f86630de9ea1fac0f9d3014d079d150fde59', datetime.date(2024, 11, 7), 2, 'BuffetHaus BLUMENAU', 'BR', Decimal('84.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('374582f5413be249a3fd5e3d3ddee9deb6a50f300893076958cbd9261e353de1', datetime.date(2024, 1, 27), 2, 'CAPITAL BISTRO BRASILIA', 'BR', Decimal('10.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('3769824f0bd3f91276c881cbcea51958c716df47138052f919fd92d1208e433d', datetime.date(2024, 9, 23), 1, 'Pix - Enviado - 21/09 18:29 Bilheteria Digital Promoca', 'BR', Decimal('49.28'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('378688ea964ebe2b2bd8031478c5276177c1e0a3c216aa8e9c4b12f4fde087d6', datetime.date(2024, 12, 17), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('786.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('378baa86ccebccdb802b2c7b8bbf740f3629bd3253e442fd7449045e99fc8e3e', datetime.date(2024, 7, 9), 2, 'Leveros *Leveros ASSIS', 'BR', Decimal('3117.80'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('37ce4e7f44a94a76ee22413d9da1a592c733e11f2d44b5a4204bc0c23f80c299', datetime.date(2024, 10, 12), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('15.54'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('3803b421ca4f0060d9359c3d9951fab8022f69ae4400257c3a24a58545f1ca6a', datetime.date(2024, 3, 19), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.05'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('380a41ff83112b807c9dd2ef815a0f8c593941e809aff6e8b26b365bec98b9ba', datetime.date(2024, 1, 5), 2, 'PAG*chicoizaura PARNAIBA', 'BR', Decimal('306.90'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('3813c73ed7c96a92691984204ed195ab15899fab1147fc12be2216ba923a4d0f', datetime.date(2024, 6, 26), 2, 'LIBANUS ASA SUL BRASILIA', 'BR', Decimal('49.77'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('382ef60e4f3e422f20186e7b3cb5482e148c62c8062cef5f2650f9e802004aad', datetime.date(2024, 3, 12), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('7.96'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('384118d65e0665febc2866c94436cdb557b8277f8729d73e19cdc97c3bba2f89', datetime.date(2024, 2, 29), 1, 'Pix - Enviado', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('38702db061bcd4602a1e2b4d1856413751c4297a88d91788dde8f5ddafad33a1', datetime.date(2024, 8, 18), 2, 'DROGARIO ROSARIO BRASILIA', 'BR', Decimal('252.05'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('38b8251bb2b2c133e656dc30506dbcb9f3ea1cd571042f911b6e44a8dfbb6219', datetime.date(2023, 12, 13), 2, 'PG *SOBREBARBA RIO DE JANEIR', 'BR', Decimal('215.71'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('38c213234aef4c44f24483cc9c92da399c640a22b8cd62d1b132a93762317f03', datetime.date(2024, 4, 11), 1, 'Pix - Enviado', 'BR', Decimal('4.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('38f629168d29c4f0202eb4c5db018cebde2c0480fd3bab584bd42bb75a2d105a', datetime.date(2024, 11, 9), 2, 'ARMAZEM DO VALE EUROPE BLUMENAU', 'BR', Decimal('217.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('3908419c58bdf25fcb93becbfb2c53ef1dc661f7ab1363b90a9c97127bf56129', datetime.date(2024, 9, 17), 1, 'Pix - Recebido - 17/09 16:41 79554652100 CECILIA MARIA', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('39135cfb3ca4900c3ce469589ad9d86c4e3ed5e9262251166b25fa9d416062d4', datetime.date(2024, 5, 30), 2, 'RANCHO DOS CANARIOS PADRE BERNARD', 'BR', Decimal('425.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('393a8539fab752e25ce76f4ed93bd694c9ccc7370fc1a6a4090f026e11863091', datetime.date(2024, 11, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('18548.34'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('395d90af6784e5ff55f75e8e9ee8aca808dd2676647ca901b3f2058802592a49', datetime.date(2024, 9, 24), 2, 'DiogoLealPimenta BRASILIA', 'BR', Decimal('169.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3966ac73e86ad51e2e1675079276f29a75352bc7496ef75b841abc6357108de8', datetime.date(2024, 8, 24), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('15.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('398155b13a8aa5c036e4629b6f9abbda750d9c4f1a3155bc3ec0cc7809b1244c', datetime.date(2024, 1, 19), 1, 'Pix - Recebido', 'BR', None, Decimal('2033.48'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('39820cd705afe94ef327cf3cf98afd90afaad6d3830d547dbe7f381e137296c5', datetime.date(2024, 1, 26), 2, 'VISAO INSTITU PARC 01/05 BRASILIA', 'BR', Decimal('200.00'), Decimal('0.00'), 2, 1, 5, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('3991161fa16d3cbb1d587382da164e01ff9c91943d02f51bdd4098d5386de316', datetime.date(2024, 7, 8), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('156.29'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('39a22ffa894ac2624954e1ed57c81f1a23bf91917e6b372bd71942273f244a11', datetime.date(2023, 12, 31), 2, 'PAG*FranciscoDasChaga LUIS CORREIA', 'BR', Decimal('236.75'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('39a67a54568ed5beef88dde4f020238364450af293c6a424f113d92dcd89759a', datetime.date(2024, 11, 22), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('7465.18'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('39d4050d34a0f7eeacdc46cbf2a7eaa96f2b6d5a7ee7daa197c8dc614b724ece', datetime.date(2024, 8, 19), 1, 'Pix - Enviado - 19/08 09:17 Franpeso Gas', 'BR', Decimal('135.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('39e95ac876042bdc6240b845f968c28b51f8d7250eacee76af60fe475135f753', datetime.date(2024, 12, 2), 1, 'Pix - Recebido - 01/12 19:55 00082840083515 CLARA DA MO', 'BR', None, Decimal('910.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('3a01dbe6b2dfe6051cb843a37f24642e0d7ee08bc7d5bc3b800879941a947679', datetime.date(2024, 4, 12), 2, 'VIP ESTACIONAMENTO SOC BRASILIA', 'BR', Decimal('21.60'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3a10b342de56ebb133b370447b0f205ab0d70d0b60d1df06cb1c12a03d5940f4', datetime.date(2024, 4, 23), 1, 'Pagto Energia Elétrica', 'BR', Decimal('509.25'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('3a20b9bc665f95f9cedba1536902e21b4f4360b769525a3da67dcd53795bd53f', datetime.date(2024, 4, 14), 2, 'CAPIM ESTRELA BRASILIA', 'BR', Decimal('69.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3a776497c140d634c492ba4d8f09c46569b143ef4c756df2fa2427a631d8e54c', datetime.date(2024, 9, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('44.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3a8b9fa7724733720d29b77283fcb32c181dc57d015f6b8322f88b2bfa0190f2', datetime.date(2024, 3, 15), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('47.88'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('3a8f138c92cdcdade6005a1429ed2aa9700b415f9aeabf2c7475955a16891ad9', datetime.date(2024, 8, 27), 2, 'Wellhub Gympass BR GympSao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('3ae1204a1cceae172fd8177f41d1e95eb0567ebd10b814a54df6c6c6c7daec25', datetime.date(2024, 4, 14), 2, 'IFD*FERMENTO COMERCIO DBRASILIA', 'BR', Decimal('74.80'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b15b0bb50bfcdbe6e657b5f8df52c687c260f97c4dbec78323b2c37d96aaca5', datetime.date(2024, 7, 25), 2, 'MERCADOLIVRE*SABORESDAMOSASCO', 'BR', Decimal('258.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b439fd4efc9cf3c989b68af36585a0f8816d1871317b30b7bf678e400a77d8b', datetime.date(2024, 12, 23), 1, 'Débito de Ações', 'BR', Decimal('1437.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b4e3f7b76e22d8dcc44e9db1f5d1763a72b7cd2f5cb21425eedd4319fa657bd', datetime.date(2024, 5, 29), 1, 'Cashback automático cc', 'BR', None, Decimal('178.75'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b5e3b2810a4e3bd1c631e10c2e23b38b2790a1ebebbb67ae2618903023278b6', datetime.date(2024, 11, 1), 2, 'Amazon Music SAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b5eed95084286b03bf1b9b8b586e796f71945f6ab91f7c467620d67c5e57672', datetime.date(2024, 11, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b764c1e780a497e5c65ffbe173f4d0421df2714241872c97c51b71899d78686', datetime.date(2024, 11, 26), 2, 'CR EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b84349d75506c0799e70f901707311bcbe246aaa7c4e5d7e90fbf2dbdbf5756', datetime.date(2024, 12, 1), 2, 'GITHUB, INC. GITHUB.COM', 'CA', Decimal('62.96'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('3b882815b53a5095f660a7bcfcefa8cb483b999729688eebb07706702e33f557', datetime.date(2023, 12, 30), 2, 'POSTO BATISTA NETO JOAQUIM PIRES', 'BR', Decimal('241.88'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('3bd54a62256bc044364c5de25291be6b8cfd9097b51b7857fec6f9f1d285cc17', datetime.date(2024, 12, 18), 1, 'Pix - Recebido - 18/12 11:09 00067428134668 EVALDO DE O', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('3bfbd232d746f66f865a894648b7106947a04760c694301dd2bb978136c5b428', datetime.date(2024, 2, 29), 1, 'Pix - Enviado', 'BR', Decimal('70.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('3c0a5f07c36f59b1c6570b8443bab511f25028149f4763484a295f47c886b263', datetime.date(2024, 3, 14), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('3c21c547c5ac4feb4d98f81b6d5ca0733e1c27479c50c5ecea77bf20dcf44ef3', datetime.date(2024, 4, 24), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('43.82'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3c227e5fcb8c94c64b8b25954aead8dbb941469ad142a61348e7ad569bacb9b5', datetime.date(2024, 4, 14), 2, 'MR CHENEY BRASILIA', 'BR', Decimal('27.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3c596768c2b6c868adf1fba16d94dd899ebde264975557ba0f1c6882a69d545d', datetime.date(2024, 4, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3c730b997bb059a82555b66559666731bcaa49260580ad62799faed4e742a325', datetime.date(2024, 7, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('3ca48e03d1cf32a629e1fa419d84d63ab0d124b3d7fcbbc2da1e710a04c6892d', datetime.date(2024, 9, 28), 2, 'MERCADOLIVRE*VARIEDADE MAU', 'BR', Decimal('78.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3ca79f34a2f3c44bb278505ed138975b91c550dca178533a0476e9947643b00c', datetime.date(2024, 9, 13), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('21.30'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3cbaecab48f5d8d42b4b6d9837b8cc5ee51681d02955d9a10d75f5e6818c40a0', datetime.date(2024, 10, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('3cc18befdc7f50482ab902cc543f16bf25f43511482a41888805d61960f7731d', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 23:26 81257597191 TATIANE XIMENE', 'BR', None, Decimal('72.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('3cdb2a6e6e5a1149a4d5c6f3782b989c3b2c413a6d7d48417639e3fa96ff84b7', datetime.date(2024, 5, 10), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.93'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('3d13b175a70d3a07aaf7d2657859dc4837f863dfa9a7471c5bf1bc5724d4cec7', datetime.date(2024, 11, 25), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('713.57'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('3d85e6524c3bba8c4460dcfdda635f288c0bb11d8c0257af7272ab1d406cbd83', datetime.date(2024, 3, 18), 2, 'LISTO*CLINICAESTETICARNBRASILIA', 'BR', Decimal('4300.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('3d8ad4a132affc73f25ba7064f8d8bc9b5bb0ce6ddbc5d9cc6d1419b36dbf72a', datetime.date(2024, 1, 12), 1, 'Pix - Enviado', 'BR', Decimal('300.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('3d9b2f76a254c8908aa26dae833ec384a1b156859ccb1344ebe35182109e1c17', datetime.date(2024, 9, 7), 2, 'LIVRARIA DA VILA BRASILIA', 'BR', Decimal('82.02'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('3db738507fab64e9eff05bb549fc01463c61cfc75b1fa278cbbc19e3a8e3665a', datetime.date(2024, 1, 21), 2, 'MP*MOSANIEL BRASLIA', 'BR', Decimal('21.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('3dc65d0dc4feb251f3e5f3a3320036834253a6882d3bfdda694f0f99944e851b', datetime.date(2024, 10, 20), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('479.77'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('3dee3ab4c82f533e118cec68605db2144740132ffe3c24fae4709f6773cf7783', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 22:55 00996977180 Anelise Toncov', 'BR', None, Decimal('72.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('3df39815b911558d2df0ed4b5859323e3a439bdd80283ef466619b6705fa8b50', datetime.date(2024, 4, 15), 1, 'Pagamento de Boleto', 'BR', Decimal('3292.62'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('3e03fbf7f3aa25a63b50b49f7eaac022a93d03c7068351efe48e9ed97e889d05', datetime.date(2024, 5, 26), 2, 'IFD*MARIANA PERDOMO CONBRASILIA', 'BR', Decimal('57.99'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('3e2b301a924477016fa63ad95edeee30db4c1ba9b276e3c07e0835ab7a41ec22', datetime.date(2024, 7, 18), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.39'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('3e578056fae5d126a87edf2de3ad6f22509f9db255286f195776ecd052ef689d', datetime.date(2024, 5, 9), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('199.80'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3e723ecbbfa8b74c3bf45735340e58da761ed173ab7e6c3fb9c333023b9922b3', datetime.date(2024, 12, 16), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3e8dd8fdc9f56998eea6437aa82d38e80cef9951e56f0d663362a20dc5e57718', datetime.date(2024, 9, 12), 2, 'VILLA RIO RESTAURANTE RIO DE JANEIR', 'BR', Decimal('137.67'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f4a958dc912ee4a6cc3ea0f1c8aa324b4d4eb6c1ac700a2e091d7fd2c3d8523', datetime.date(2024, 6, 3), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('104.05'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f51c97ca5aff8bd458fbf5ed9ac21964ccbf7916663b113c800ca37d7d2684a', datetime.date(2024, 7, 22), 2, 'PAG*XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f5a67eaaef7d6245721a0ac40baa4bed0bd2c9b10569d2919635c1ac08c78a0', datetime.date(2024, 9, 18), 2, 'IFD*ZANELLO VIANNA INDUBRASILIA', 'BR', Decimal('299.99'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f5d0a954af18ce2b794e331a72a6c6c2445bf2be27b2035fd3bbe63aa82d97d', datetime.date(2023, 12, 28), 2, 'NAZO SUSHI BAR BRASILIA', 'BR', Decimal('333.25'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f6e8b6769057e840c2394b63cf1b2410aecb5a52a9349141872f2bbb56bfa4e', datetime.date(2024, 4, 4), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('117.98'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f83db06756f7d24e8d9f2ffd2601c00aaa2efee0cb43d934b663099ea92174d', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 18:23 11728329191 IONICE DE PAUL', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('3f97383ab451a0cfbe8ca8029c79c82962b6c2f5b004e7eac7d5d48030c5b386', datetime.date(2024, 2, 13), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('3fcbdd49dfa5d9dec079f398bca675852ffc6b7434c911a6f97d2c3fc44f16ef', datetime.date(2024, 7, 13), 2, 'ALLPARK EMPREENDIMENTOSGoiania', 'BR', Decimal('6.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('3fd1e0e38ba346bdeb0b7acaa648302fe875e26b5e6174fff17fc80d77457e0b', datetime.date(2024, 3, 25), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('14.80'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('3feae57ebf4e231198c544d68017cbcede27ea11624b5d5cc2f0f3e723552ae1', datetime.date(2024, 1, 13), 2, 'POSTO FIGUEIREDO GILBUES', 'BR', Decimal('226.70'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('4028c81e55d84eac30e61f62c8dff09a5b0e565c7784caed9e90e0d1ebd47e48', datetime.date(2024, 6, 25), 1, 'Pix - Enviado - 25/06 18:00 Chb Centro H Brasilia Ltda', 'BR', Decimal('400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('4058a6cae4f5c4827a323f52fedc4b539caf06ff8652f6e00630567357103271', datetime.date(2024, 11, 21), 1, 'Pix - Enviado - 20/11 08:08 Ana Maria Dias Tanan Almei', 'BR', Decimal('470.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('405aca45bd7dea8995940a805d8a228317440fc31c1ac274b7da38f9a0ea5fee', datetime.date(2024, 11, 29), 1, 'Pix - Enviado - 29/11 06:26 Francisco Emidio Soares', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('407fa7ff4182d38fcda3fe3ffe25833774c70d35cfae06774a8ae4e0eb2af6e5', datetime.date(2024, 6, 30), 2, 'PAG*PauloHoracio BRASILIA', 'BR', Decimal('78.04'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('40a1fe3cb677b8a438db49e367abf003797a1cc4b67e15ade2e245ba599e4589', datetime.date(2024, 10, 24), 2, 'DeltaexpressoBsb BRASILIA', 'BR', Decimal('16.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('40ab8a839244e033d7efd37f3d8b129b5e274e7fb15ec4d02a3ce604fd0529a5', datetime.date(2024, 5, 10), 2, 'IFD*RSNT MIWA RESTAURANBRASILIA', 'BR', Decimal('159.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('40c5bf305e4f0ac31647a065d55eaa81f900c637d2624ece7235efce1e0545aa', datetime.date(2024, 1, 17), 2, 'PAG*XsollaGames SAO PAULO', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('40e0085ad2ebf86c1c17b3d3b90dd074e702386d367b708ab7a440d191982c74', datetime.date(2024, 10, 26), 2, 'T.T. BURGER BRASILIA', 'BR', Decimal('24.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('411be062b69bbe51685b630296a3ab829057b2f2aa11eb2f80b011e1df5d7683', datetime.date(2024, 4, 22), 1, 'Compra com Cartão', 'BR', Decimal('62.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('41403d0f7e1d9d150acae10d80a24249274c24247566c9fa394a5f901c7d1866', datetime.date(2024, 7, 15), 2, 'NEW EMPAR EMPREENDIMENTCORUMBA DE GO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('41741e48ddd1acd1fdf25218e307185541d736cb7f8f4f83ff01cf992916cef1', datetime.date(2024, 9, 24), 1, 'Ordem Banc 12 Sec Tes Nac - 054456420001-18 JUSTICA FEDERAL DE P', 'BR', None, Decimal('2736.94'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('418ef754f6af52df838d78c2bcce97ca8a13f5f2378841df26da26f8aab3dfcc', datetime.date(2024, 8, 25), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('80.79'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('41b869a0329b29fae6eb470fe9419b6063c5c8176b9543eae5aba7eab7e05c5b', datetime.date(2024, 3, 15), 2, 'RUSTIC ALIMENTOS LTDA MACAPA', 'BR', Decimal('71.50'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('41d807d08fb44db7aab925a422791ed026d8cf9ae0356e82a91c4409fbd39937', datetime.date(2024, 4, 21), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('41dc708afe849c48d4abc8ce1ec586f18810978da6f48fe7e3745ca41d8c243e', datetime.date(2024, 1, 15), 2, 'LDM PARC 02/04 BRASILIA', 'BR', Decimal('1100.00'), Decimal('0.00'), 2, 2, 4, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('42112dd4449616cdf6333f0da48f920e9b6d489fb948f29a69f75d0b969037de', datetime.date(2024, 10, 6), 2, 'PRIME BEER BRASILIA', 'BR', Decimal('6.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('42601e94ec2b14138756545db0318d81f497ccc4d87a2c7c01c808536b3f64a8', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 08/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 8, 12, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('42a5cff1f7e60ad58192d3036bea4d982ae524f53827371ad5ab922117107a91', datetime.date(2024, 11, 29), 1, 'Pix - Enviado - 29/11 06:24 Francina Noleto Aires', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('42b2d8df5515773de091aba2737db36a7fcc93ba45d673cf93a45c7fbf583420', datetime.date(2023, 12, 13), 2, 'RESPONSA BAR BRASILIA', 'BR', Decimal('35.80'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('42c49f27763edf5e185a8de2e66015c584b999576d0ea00379090f7f8c486d95', datetime.date(2024, 11, 29), 1, 'Saldo Anterior', 'BR', None, Decimal('20302.98'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('42c7063303d55215768d601b480515b0bd0cdab4e1239cbdb41327ab6843cae0', datetime.date(2024, 4, 5), 2, 'MERCADOLIVRE*WIXACESSOROSASCO', 'BR', Decimal('58.57'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('42e8a3bb40f5d2f3a156e89c832af3ff94ba2a563f1dd0de1ba2c25fb72107fc', datetime.date(2024, 12, 17), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('2358.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('42fffec90d13a8057d2757f4033d3d303d904a433ce08a15073ee6daa8722ee1', datetime.date(2024, 12, 2), 1, 'Pix - Enviado - 02/12 12:09 Neuropsi Psicologia Basead', 'BR', Decimal('3850.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('434265a4a98eeb530abfddafaca364700bb9c1e96ce8aafc0b84c1c89c2e3bf0', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 06/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 6, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('4343d3776246e505db9aeb2e75aa57a4018ba08e16bc184cc15d4338343b4343', datetime.date(2024, 2, 16), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('27.16'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('43516d934f862fe657fb4ce585eb2235252e408ffc2275104cc80a9ab17fcb0c', datetime.date(2024, 7, 13), 2, 'PAG*EduardoMeireles AGUAS LINDAS', 'BR', Decimal('36.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('4363b2aee93010b9ac26f1ee4006acf5abfa03d9a55ca43c8e4ff2e25ebc8415', datetime.date(2024, 11, 6), 1, 'Pix - Enviado - 06/11 15:52 Anizia Maria Pinheiro De A', 'BR', Decimal('115.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('437bdbc35a6b4217023251c23e04d8cef8877da0e6a93bcfa482c61298d32ebc', datetime.date(2024, 7, 12), 2, 'CIDA REIS MODA FITNESS BRASILIA', 'BR', Decimal('300.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('4386995c7002dc9c15b0e5f0836b320adb4bd49e9bf570179073dd080670ec6f', datetime.date(2024, 4, 19), 1, 'Pix - Enviado', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('439d1c0cefe96ffb608659210719f84fb66e812844bda4efaf8fd8445031c07d', datetime.date(2024, 6, 26), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('11.81'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('43a08bab340539c544cd35c443f96b0143041c159abb1b71ccee60e829241db2', datetime.date(2024, 12, 20), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('17222.62'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('43aab943b25f90fe35cbb3b4bfef595c46e286be88447e6dc3216e00cc85d419', datetime.date(2024, 12, 9), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('38.90'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('43afad502a48c811d3c2b83ccc2a6f9bcdf91a8dcec70e5be056ade7b2a078d7', datetime.date(2024, 12, 17), 1, 'Pix - Recebido - 17/12 19:35 11728329191 IONICE DE PAUL', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('43bd04d31bbb26c8f0c6b1f0990aa202920d3a3e21e65425578accea8dd28309', datetime.date(2023, 12, 16), 2, 'LAKES RESTAURANTE BRASILIA', 'BR', Decimal('44.64'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('43c2f18cb4abf81544533aa71f4842a9b1d4172bc916272b516aeaf465544ecf', datetime.date(2024, 11, 22), 2, 'BONNAPAN SEU DIA MAIS BRASILIA', 'BR', Decimal('30.29'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('43c588475914a5e15fe254065a46f47ec3f936dd4aa26f7d7ca96d3160f97c65', datetime.date(2023, 12, 30), 2, 'POSTO JBS FLORIANO FLORIANO', 'BR', Decimal('135.39'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('43d7edf98e6fc5cfd35e35b8a8823260ca1d617e40b046f47028986e1b07b8c6', datetime.date(2024, 2, 2), 2, 'CHURRASCARIA DU CHEFFA RIO BRANCO', 'BR', Decimal('44.40'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('43f9cea55dacf333b6f811e2178167832a45a965e2726a7eda410df1b96f5cd9', datetime.date(2024, 3, 14), 2, 'VINHOS E CO MACAPA', 'BR', Decimal('177.92'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('4413a37e52c9e60ce0a51339648bb6c19f645bc837289d791223347f495901b0', datetime.date(2024, 8, 16), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('441a82bd8d4cd38baf5824ca3d67cbb6b668a3627b5eeaf384cfc0e44d49e70c', datetime.date(2023, 12, 21), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('34.95'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('4448c0eee3cf8b001fa730054289a567130f3a26d80f9add4aecfcec2f306593', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 05/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 5, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('4451def738d4605490b10cc68582d0a29e857244f445e8c9ff0b9077dc7ab0bf', datetime.date(2024, 11, 7), 1, 'Pix - Enviado - 07/11 17:15 Guilherme Souza Lobo Morei', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('446a051b6327a9e54bc90d71549cc9ddbd06069ae2073021c8f239ef84da8bd3', datetime.date(2024, 11, 6), 2, 'MOINHO MARKET BLUMENAU', 'BR', Decimal('287.61'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('446e0eca8929b353ce151c986c2bd557af628453fb985ba0b1dda1ccf4bf5395', datetime.date(2024, 7, 16), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('127.19'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('448e0b98985973041e5b1af0f08471d6bbee7a501deb5e2c8d64d48eed73d247', datetime.date(2024, 11, 3), 2, 'POUSADA PIRENEUS RESOR PIRENOPOLIS', 'BR', Decimal('264.44'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('448e961531a4dcdb45cec1f4ffd95865c9bba3cb490e4746c17d4f9bc39a57de', datetime.date(2024, 1, 30), 1, 'Pix - Enviado', 'BR', Decimal('66.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('44ae81406bbb42cd3d0573bad9b44f636ab198f1f890f042a8b663a3c23b47e2', datetime.date(2024, 4, 30), 1, 'Pagamento de Boleto', 'BR', Decimal('1310.98'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('44cb0f2ac81fe54b75009c6d29cc1639517d74d03eef1f0d2c890cbab72d0ada', datetime.date(2024, 9, 13), 1, 'Pix - Recebido - 13/09 17:03 00036459488134 ANTONIA DEN', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('44f687d4156c3442c4861ad9e6ec08c42913ac9693f12f2b64425360dcc91941', datetime.date(2024, 7, 9), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('27.12'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('4502bd80ba70d0e55b4d091a16433d84a2fe52d015986e7fc8fb48f03651edf8', datetime.date(2024, 9, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('18113.25'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('453117b5741b32ab2bad120412fe39c827f343fb95610765ef8946ac445e1c0c', datetime.date(2024, 10, 28), 1, 'Pix - Enviado - 26/10 16:39 Helen Bruna Nascimento Far', 'BR', Decimal('848.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('453a2a4cda046fb1d27cc2cea5101107d1b62671fd8ee7ee85e4ef9b095549ed', datetime.date(2024, 8, 20), 1, 'Pix - Enviado - 20/08 08:39 Jose Reinaldo Da Silva', 'BR', Decimal('57.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4580c885514a150631c61af2b49e8c180eda08cce9ef818e6d623d74c91b5b33', datetime.date(2024, 12, 19), 1, 'Pix - Enviado - 19/12 11:04 Tatiane Cruz Melgaco', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('459003967c03b1a50f2cb18c87bb4427cac7553ef75abb9e33b74fdcdbcb3829', datetime.date(2024, 1, 27), 2, 'MERCADOLIVRE*RAFAELALMEOSASCO', 'BR', Decimal('208.40'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('45a0d1a11ad64eec48081cf5a434901c022f86726b185b4fbf25ff88a6d549c2', datetime.date(2024, 9, 18), 2, 'IFD*IFOOD CLUB Osasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('45c118e44c506cd7c65e60c4a472b2ca45ea17f544d6707873d86a6e39ff2778', datetime.date(2024, 7, 19), 2, 'POUSADA PIRENEUS RESOR PIRENOPOLIS', 'BR', Decimal('1105.63'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('45cd8ecc3e38e2995309baea9c44466b5153f5876b69a664fe2157059c31974b', datetime.date(2024, 2, 26), 1, 'Pagto cartão crédito', 'BR', Decimal('20874.20'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('45cf9c1502b9964725757919b9d92047e79b3071092a27035eb183dd219df5a6', datetime.date(2024, 11, 29), 1, 'Pix - Enviado - 29/11 18:39 Vibra Energia Sa', 'BR', Decimal('276.07'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('45ec942ebdaeaca9f697a9ac3a727934f89ce33c233c5d4e5af5bcd492ca40f1', datetime.date(2024, 2, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('45f69b78b23546d73ad6230393e1a612da31afaeed57edd1633e659ba59d1603', datetime.date(2024, 3, 10), 2, 'PAG*AeroportoBrasilia BRASILIA', 'BR', Decimal('80.63'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('45fab4fa7ed5fcacd9ea9e5eeb04321e47f58a2114753325b2248e95e0dd2c67', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 08/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 8, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('45fda2214e86ee4f7f42d05f210ee0eaf60a458334a3815fd53a4f35ac977991', datetime.date(2024, 9, 1), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('118.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('463f404216afe05d51d19fffd56ba79e1445470cb350b73a58be5121a58f6d8f', datetime.date(2024, 8, 16), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('1219.44'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('46438865869f9641eb2fb0ba413aef0646052f6ec5839d840a62ecd9fc86c512', datetime.date(2024, 12, 16), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('534.15'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('4645364f33b88effa058e05a19ff4e05649eebe640dc35250db4d3c039e4e656', datetime.date(2024, 4, 8), 1, 'Pix - Enviado', 'BR', Decimal('205.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('466791a4da678499b01871044c68da4639dec5bd38c8c163789cd61c743d971e', datetime.date(2024, 4, 12), 2, 'LISTO*CLINICA PARC 03/04 BRASILIA', 'BR', Decimal('2000.00'), Decimal('0.00'), 2, 3, 4, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('4685e979a61bce86e0daba949b9ced1ab303f8eadfd63a7fc7e2cbcf126e7338', datetime.date(2024, 1, 14), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('46cf57826dbc0e3ce7eafa0c46b465018cb944017b1a876bd9398449be5bd9b1', datetime.date(2024, 4, 5), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('46e0b6aa81be8683c5c682154a554149685ccfc45234dfae37017ddd61994b20', datetime.date(2023, 12, 29), 2, 'POSTO BARREIRINHAS Barreiras', 'BR', Decimal('175.53'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('46ff15c2b4a6050b697b846342f9b3fa168480ad16c348c66fdd273b26808f19', datetime.date(2024, 2, 6), 2, 'PAG*DiogoLealPimenta BRASILIA', 'BR', Decimal('71.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('470abae1f55e529948d32eb4b9fe75326c8720c0919751b198bfdab771d84402', datetime.date(2024, 8, 23), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('102.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('470dc518dd7cf43b007321e017d7823db10bc6892da37231f04dc42e0d0f611c', datetime.date(2024, 9, 23), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('471f1823bf995fe3f2deba8aca74ab5ce8ada398007334d4cc917a6edc519f22', datetime.date(2024, 9, 5), 1, 'Pix - Enviado - 05/09 12:27 Helen Bruna Nascimento Far', 'BR', Decimal('800.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4721ed2f4575c122039136579899219f7a95cce54b185c1e8eba89c50872ac70', datetime.date(2024, 9, 26), 2, 'LudymillaDo LUIS CORREIA', 'BR', Decimal('69.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('47591a61c2b01e4c82d6e581027198ac457736b274fce0c31ae77db8b3164173', datetime.date(2024, 12, 5), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('32.79'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('475d241549a1d14c593597e4c5b190641cca4e505775872e369ebb59a22ee567', datetime.date(2024, 11, 29), 2, 'IFD*CUNHA SAGHIE GELATBRASILIA', 'BR', Decimal('167.45'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('47b05d7877487226c161b60837f3ba547df57cbe330c24fbd83fd65959e27ba7', datetime.date(2024, 8, 18), 2, 'IFD*H.L.F HAMBURGUERIA BRASILIA', 'BR', Decimal('159.59'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('47c6cfc7f51015f3fcea640d72cd4d2a270202abc5d357fa7c2c46b1d8670518', datetime.date(2024, 11, 9), 2, 'LA DULLIE GELLATERIA L BLUMENAU', 'BR', Decimal('58.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('47d58faf807d19ae9027bccf05a342acbc201d6e72753aac645e81cec0131701', datetime.date(2024, 3, 1), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('112.99'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('47e5aa07085bfc4e72867dc30f0d6eac65c8af4c56855e938fd8eff225725daf', datetime.date(2024, 9, 3), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('300.76'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('47f10c4b5745e7a28ecd2c4ec7edcf43f898a3cdce16ec52cb631e865f04d183', datetime.date(2024, 10, 14), 1, 'Pagamento de Boleto - ', 'BR', Decimal('104.13'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('47f9d1d05d63c40b0e2e460f9dd3ce58fe2f148d59957cbe1409eee62bcca49c', datetime.date(2024, 2, 2), 2, 'HOTEIS F. TELLES NETTO RIO BRANCO', 'BR', Decimal('76.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('48257bce2df61e265d075390114e1f82b1944e37baf42c045928a1a1630eb982', datetime.date(2024, 10, 5), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('151.52'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('489f9e26be814f9200159d975a28272010e80aa83c8f8ac6dc29d55c46768182', datetime.date(2024, 2, 20), 1, 'Pagamento de Boleto', 'BR', Decimal('15.87'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('48bba42241e997b3df6013ad3f52632858bff70d3ccb10473e7f9be7daf1e180', datetime.date(2024, 6, 6), 2, 'IFD*LOG CITY ESPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('48ccaa91c10942a47090f4684aa4450b66aae8a15e4db7817f068b65bb29f8c6', datetime.date(2023, 12, 21), 2, 'TICKET FACIL BRASILIA', 'BR', Decimal('81.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('48f4d299df8da591dc5429613c950609523fd6363fd92b0b0d50b29eaea8738a', datetime.date(2024, 7, 22), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('492d5f9ca5475e7551de52237ea34d5d1b4e2a3d84d5a256a74e6749d58acffb', datetime.date(2024, 7, 1), 1, 'Pix - Enviado - 29/06 10:43 Alessandro Rodrigues De Al', 'BR', Decimal('10.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('49803b1add2325413ba3ff5e5a62ce3351e02ee7619875f197bbff05b7460981', datetime.date(2024, 4, 22), 1, 'Pix - Enviado', 'BR', Decimal('180.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('498809f96d8554dbd945219e4473856b2b83696e483454ccbe9f37b18a4c053e', datetime.date(2024, 5, 26), 2, 'MP *4PRODUTOS OSASCO', 'BR', Decimal('81.80'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('498e8412ed094856e86345d1521fc80f21ab5426314a8e99ca21fc0ee2217748', datetime.date(2024, 4, 13), 2, 'POSTO PETER PAN BRASILIA', 'BR', Decimal('293.65'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('49a62a588a3f37438ec9745dc466e0353df421aa736bceacd373fe80414c6350', datetime.date(2024, 4, 8), 2, 'DROGASIL 1383 BRASILIA', 'BR', Decimal('92.18'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('49ae3c3f332b0d6c962393e43b6cc21cfa302520b19bdd7a30488ccc20bf47b5', datetime.date(2024, 1, 25), 1, 'Pagamento de Telefone', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('49b6ebd69e7d6fb0b7a2b1d423e19b3cfc8baaee2ae3f69558467f68b9fab9d8', datetime.date(2024, 10, 17), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.94'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('49d3d588c12c3f52334212b8d9cf3dea3a41569120aeb78de456beb04cdefff7', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 09/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 9, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('49e50f32042eb6434421204ea47bd496fa3ceb60c71eda12413b60d8da8edcb4', datetime.date(2023, 12, 26), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('15967.05'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('49e7dada84d128f2c952a8d7a2f340f8801aa899f5368109ae3083b7a7b0a8c4', datetime.date(2024, 5, 15), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('49e8388584bb3c23cac3e1b6ae3e1c70bbdd7a4d225516fc7efeaba47c957a1e', datetime.date(2024, 2, 20), 1, 'Pix - Enviado', 'BR', Decimal('102.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a35e5bec6ad8eba8fba0ecfa34bf9f34ea349584d5812ca153db37c5b632309', datetime.date(2024, 10, 3), 1, 'Pix - Enviado - 03/10 15:56 Ricardo Batista Dos Santos', 'BR', Decimal('450.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a497d3a89552812e25ac35fc6a01c047da1d42bb6ea84a740992c2316445e9c', datetime.date(2024, 5, 23), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('616.11'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a5e0afcd3da936633995b4015a9597527c99bb51fb1e6e68efcb07880e3e2f6', datetime.date(2024, 6, 20), 2, 'QUE MARIO BRASILIA', 'BR', Decimal('59.95'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a6623d45b20fd58c53d3b872854369a5d297529c64074673ffc48439c13d9ca', datetime.date(2024, 1, 19), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a6c9625cf4f6a8953ae1a8adcdd0d99b4f78e92ea223cdb27a0007376d6c7dd', datetime.date(2024, 2, 6), 2, '5S PAPELARIA E LIVRARI BRASILIA', 'BR', Decimal('80.60'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a7281c63e47ed31742f69b164f8de832922a30391ded496f7c83feb07a519cd', datetime.date(2024, 1, 6), 2, 'TITARA GASTROBAR LUIS CORREIA', 'BR', Decimal('120.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('4a76e22f7a2bd9923b3b05e5d5aaaef449691dffc8f81857dbf5ecb403cc3578', datetime.date(2024, 9, 27), 1, 'Cashback automático cc - Cashback Automático', 'BR', None, Decimal('181.11'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4aabb159d649648daecb8512629a9aef91fb6129210c584478b0181a59e419d9', datetime.date(2024, 1, 15), 2, 'LDM PARC 01/04 BRASILIA', 'BR', Decimal('1100.00'), Decimal('0.00'), 2, 1, 4, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('4aba9931ee81cafdaaddbe96996576def79dc6ab63fb2604a11f376460f59da1', datetime.date(2024, 2, 5), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.12'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('4ac02a7f24c0473d38f17e2e461ca7cfdcc28473a951e13dcd08b73c423b6d78', datetime.date(2024, 11, 26), 1, 'Compra com Cartão - 26/11 12:31 LorenaDaSilva', 'BR', Decimal('36.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('4af0d5990a9ab44609acacb05367cefa5072ef756c5fef3530fe63934b63d41e', datetime.date(2024, 12, 10), 2, 'O GAUCHO DA VILA CHURR BRASILIA', 'BR', Decimal('53.17'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b05afa622cec252af41ea11a9f607a2118cc9197b9da2a0d1ed19944be10b76', datetime.date(2024, 9, 27), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('4679.10'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b0653ba7418c0c7d118870e6966927573624b755add90a9e0f0822c42b93cfd', datetime.date(2024, 5, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b211d9f5052f9a8df80038741ce79c846355c71fb2d8d1a4f2706ae34839167', datetime.date(2024, 4, 3), 1, 'Pix - Enviado', 'BR', Decimal('350.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b3a67e29b183337d654ba780f20802b05cd6598f8107165ed64a38beb62b2af', datetime.date(2024, 1, 8), 1, 'Pix - Enviado', 'BR', Decimal('20.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b8086f751b9ce26ca53b6de4f10a95742c7a55612438630c59719f2cd209382', datetime.date(2024, 8, 5), 2, 'F L L MELO LTDA SAO PAULO', 'BR', Decimal('63.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b9a61581700cb953a366e9918295940fe5bdd7e9f9eee2f4a46af9cc0d26717', datetime.date(2024, 7, 22), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('17273.93'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4b9e3d4bb69dba9e6516905eb5b05a75c293a8226d61f1c6caf264030aab2376', datetime.date(2024, 10, 11), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('4bdfe882b2e036d673614347038ac145c8ff9a752ed70435c75d0122bcbc2927', datetime.date(2024, 11, 20), 2, 'Conteudod6aj6y BRASILIA', 'BR', Decimal('58.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c0271839ee28a4d5694883f5842799cfcead356dd7b8de6cdca0846a1a52e56', datetime.date(2024, 5, 20), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('413.82'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c0dc9fbc126541aa19d09473c98be2123718f347aeba71af3f7afd9f22c729f', datetime.date(2024, 11, 20), 2, 'SABOR NATURAL BRASILIA', 'BR', Decimal('178.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c517f489610a733b97fd9db81dd12c2e9ec35da755f28a46034108af664a030', datetime.date(2024, 10, 3), 2, 'MG LAVA JATO BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c572d21f8be64c2de729be5b21137343ad229ad7a51be050065e7048882bab0', datetime.date(2024, 4, 12), 2, 'LISTO*CLINICA PARC 02/04 BRASILIA', 'BR', Decimal('2000.00'), Decimal('0.00'), 2, 2, 4, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c585165ec03a46a3c67ce99b5f6e75a1602890eb9c7d8531922eb8dbb47239a', datetime.date(2024, 1, 13), 2, 'ANISANZINHO TERESINA', 'BR', Decimal('320.96'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c5f0026f8196594e668d1e03da6b94b16e184d25f19ef2ded8b1a87ba69a6c5', datetime.date(2024, 12, 20), 1, 'Pix - Enviado - 20/12 07:46 Manoel Erivan D Da Silva', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('4c6ae1ac8ad22095e9f0f4a0dd0362f720a1d92b07caad7dffdeced4bb3c6526', datetime.date(2024, 9, 5), 2, 'BIOEXATA FARMACIA BRASILIA', 'BR', Decimal('73.70'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('4cb3739caff1d34b976b99f98508bbf2c21621da3ffa6f38a74f930049c31c04', datetime.date(2024, 1, 26), 1, 'Pix - Recebido', 'BR', None, Decimal('5602.66'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('4cbf5b031c26325057a3318949cb448f8c875c7f500715040bdc115c6794529c', datetime.date(2023, 12, 19), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('4d41bb1082fe2bd56d25216baea34e327a65c148b039d66802a1bd3109237a75', datetime.date(2023, 12, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('4d4ee6238c651506189aecab44449b5c6e8e52cdf30dcc4a2cd6825d566097c7', datetime.date(2024, 4, 16), 1, 'Pix - Enviado', 'BR', Decimal('272.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('4d69e61453122a5838ea0a72f18833c5af7056d70fe972f1fed2c45e03b21e14', datetime.date(2024, 8, 29), 1, 'Pix - Enviado - 29/08 13:21 Au Au Que Visual Pet Shop', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4daaf5037cb06179f5b7b3949703c40d4e18a36cdd068e434c51f13ff57c1e3e', datetime.date(2024, 10, 16), 2, 'UBER *EATS HELP.UBER.COSao Paulo', 'BR', Decimal('34.25'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('4dbae6cfc0defa6ed2a6c15dfb440d81574948fe238335a72ed99734d844c01a', datetime.date(2024, 9, 26), 2, 'RESTAURANTE SAO JOAO TERESINA', 'BR', Decimal('134.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('4e06a4f194489c663241ee9edf9c515455c993d5bc17ea67c143dee384e8d442', datetime.date(2024, 9, 21), 2, 'IFD*SN COMERCIO DE ALIMBRASILIA', 'BR', Decimal('131.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('4e0b60afc7d599f97f9057ea55d3153c4d79502b85c202ca5add8a89fb088149', datetime.date(2024, 1, 16), 2, 'WORLD WINE BAR LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('4e512a0302ebe9dd4c4350d2acd3f1e835b613fe5a0f2a0b84a0a1f44c3cbc20', datetime.date(2024, 11, 9), 2, 'ifood *IFD*GARCIA E Vila Yara Osa', 'BR', Decimal('110.96'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('4e62d157071c625b6419eca76300012eaab684bb4d5181983431d7541c847f10', datetime.date(2024, 2, 22), 2, 'SUMO BRASILIA', 'BR', Decimal('394.57'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('4e682518bf1dd32763379d0706f3a40132469b6db0e53b4fb07b90cccfa568d1', datetime.date(2024, 9, 3), 1, 'Pix - Enviado - 03/09 18:30 Manoel Erivan D Da Silva', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('4e796c93ef2d0e28bd81c3f40e20e739c6954395cbfceaafc2f20d476570def8', datetime.date(2024, 11, 9), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('16.94'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('4eeb9aade1255b66864579515324b5873855e2008b912e3934d8c54ad5a91980', datetime.date(2024, 10, 22), 2, 'CAPITAL BISTRO BRASILIA', 'BR', Decimal('115.50'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('4f3f3c31d153e9ab0afa4ecae380b91633679978d1a98347ed53734747ee9da3', datetime.date(2024, 10, 15), 2, 'UBER* ONE OSASCO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('4f4bea590d2450e3afd846374ede22cc970b2eab669791fc7994f04f8f6b1423', datetime.date(2024, 2, 23), 1, 'Pagto via Auto-Atend.BB', 'BR', Decimal('19.12'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('4f8b61c87c3357175322409ea80169d886eb81a18dd0ed48066cbcb33c8dd837', datetime.date(2024, 4, 20), 2, 'OUTBACK BRASILIA PIER BRASILIA', 'BR', Decimal('277.09'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('4fabaf158f91d0a6191a745c8f06f3b0c0cf7ce7bf9d06ac1c8db5f7f8e02922', datetime.date(2024, 11, 29), 1, 'Pix - Enviado - 29/11 14:06 Maria Eliene Oliveira Port', 'BR', Decimal('2284.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('504e2e3daaa69f30acc058c79f90e4eb53285b147c97916bf941207c6ccaf354', datetime.date(2024, 3, 12), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('78.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5052c0427e8c7f30a39485b0945a0b9b7b3fa8336399d1eb20d6c95f2d1cf51a', datetime.date(2024, 1, 3), 1, 'Pix - Enviado', 'BR', Decimal('50.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('509b334a9f0c3edff542b659c71ba3de8757fadc70f09595073647af397cac38', datetime.date(2024, 11, 19), 2, 'DiogoLealPimenta BRASILIA', 'BR', Decimal('40.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('50c930f767ffbb067d5743078899c836fbaea1f1102912473536220b4116cf66', datetime.date(2024, 1, 8), 1, 'Pix - Enviado', 'BR', Decimal('16.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('50ed49a9b06ae2f9333c26a311506bc434790d90d9492fa9d769e6164386235b', datetime.date(2024, 11, 1), 1, 'Pix - Enviado - 01/11 14:35 Growth Supplements Prod Al', 'BR', Decimal('193.74'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('50f269ba8473df37a36d39bee895f6bcf24973288230c8e55aaf1443070c78bc', datetime.date(2024, 4, 16), 1, 'Crédito Sistema CDA', 'BR', None, Decimal('495.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('512d2060e350482c046af8b8ed3310a9ee8c0a102182b57589e2a82c89f82c0d', datetime.date(2024, 11, 29), 2, 'VIA DEL CAFFE BRASILIA', 'BR', Decimal('19.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('5148b092f4b00de023c34682a4ce5542525b9b745b9d68af530fe18f2e8bf217', datetime.date(2024, 11, 5), 1, 'Pix - Enviado - 05/11 11:43 Francisco Emidio Soares', 'BR', Decimal('150.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('5156a2f71425e4d6c0bbefa2f1fab811c573106b0864b405b680388524a87d20', datetime.date(2024, 5, 17), 2, 'IFD*Jose Grigorio Dos SOsasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('51883b24513e8bd36bec48f48a6c80286b73474b9fa86b54b9df385393937e76', datetime.date(2024, 3, 20), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('568.23'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('51a149a1af8c296bc4fa0a09c0a1f07d49ee0c136eac26013c9e7aff5c849980', datetime.date(2024, 4, 26), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('51ac81b5f0def78a277bb451916f2c4d2b174ce46a0705ec1bc30f7996a25c9e', datetime.date(2024, 6, 6), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('4.73'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('51af0e25011b4ccac6643c3858b3c6137cfd9666ce15c5d81eb749fd7c5f84bf', datetime.date(2024, 9, 30), 1, 'Saldo Anterior', 'BR', None, Decimal('44866.22'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('51c0f41e6480b799e73cdebefaaff7937caa83feb7cec72099cb5f737ed9e283', datetime.date(2024, 5, 17), 2, 'T.T. BURGER BRASILIA', 'BR', Decimal('109.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('51d8b7bab579b58a16cbecfe9ac56284af2a7428517397ce9ed495a8dfe19fec', datetime.date(2024, 3, 25), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('3.41'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('51ebf83955f4f129d2bd22e445c39663ea183ea94c74a849b2a5dce809fa935d', datetime.date(2024, 11, 11), 1, 'Pix - Enviado - 11/11 18:05 Anateia Da Silva Sol', 'BR', Decimal('14.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('520decf77199d314af8b1522dfdc36bbe761d23a79a96edc8c9dabe0f6ed0ddd', datetime.date(2024, 2, 5), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.83'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('526bd4d52c9600f5e056942a1c4bca3ba112e003a7832979cb796a62b1338de6', datetime.date(2024, 5, 17), 2, 'PAG*Folhadesp PARC 06/06 Sao Paulo', 'BR', Decimal('109.60'), Decimal('0.00'), 1, 6, 6, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('52d6ebef31540e27266e649cd6c74efe429b4a2aa0dd5f2aa6e976a15b9267b6', datetime.date(2024, 11, 9), 2, 'PONTINHO Blumenau', 'BR', Decimal('160.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('52d9d7bb6f762aa6cc143ab8e6f823c8d0130ad0e1c8b3499969c717cd392c86', datetime.date(2024, 2, 21), 2, 'MERCADOLIVRE*YASMAQ OSASCO', 'BR', Decimal('58.57'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('52da1b4a3312194380c596f69cb495c7db67afcf533f3c198cdcbff32526309c', datetime.date(2024, 11, 19), 2, 'MERCADOLIVRE*EXCLUSIVEPOSASCO', 'BR', Decimal('273.99'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('5327ea48e55858db3b5fd7176a1b72ea911f504dfccbbb281894c657c9501fc6', datetime.date(2024, 7, 22), 1, 'Pix - Enviado - 22/07 15:03 Vibra Energia Sa', 'BR', Decimal('244.66'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('53adc9073a5c764f7ddf31a8449e45165428d98cb66db000d6499b58f418202f', datetime.date(2024, 6, 15), 2, 'VELOE BARUERI', 'BR', Decimal('60.26'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('53b9acce621fe18eae0002735446283b2c440d0febec56f3911ec77c3c1282e3', datetime.date(2024, 1, 5), 2, 'PAG*LudymillaDo LUIS CORREIA', 'BR', Decimal('206.60'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('53bbc59f442506a504fba13e68754a5b71cf39be9a46ebc831fa9aa3f2a5c3a4', datetime.date(2024, 4, 24), 2, 'MERCADOLIVRE*2PRODUTOS OSASCO', 'BR', Decimal('347.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('53db4b6b79960359bfd3a47daf2f71199820c1e0a170a00983fbae0473fc249f', datetime.date(2024, 5, 7), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('9.85'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('53df6d65f011a39711c60472adf6e0dd00a004f2b50c0fb10fb2420992abc7d8', datetime.date(2024, 11, 3), 2, 'MERCADOLIVRE*SPROCHOWN SO PAULO', 'BR', Decimal('38.88'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('53ec0280f0dbba14a2f4859f3857d496e3373392b08d03f040e6fe7ee57db1ff', datetime.date(2024, 4, 4), 2, 'IFD*Gleidson Renato LeiOsasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('53ec472c2dfa2d18a735395ffd29986e4c06c0de682d388730c7a0af17e9506f', datetime.date(2024, 2, 25), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('172.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('54021d62726bc3114dc4bbe412d42cf5d566bd73b1f6d53ee4fae0f02b1d61dc', datetime.date(2024, 5, 28), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('5405937206f53318a877c5706992ca11d2ff32b7d1f767e392c43547b46dac32', datetime.date(2024, 1, 29), 2, 'MERCADOLIVRE*E3X OSASCO', 'BR', Decimal('124.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('5475269ccb026270049f411534597e85d60d2fbe3401b38bb01e389bc5447690', datetime.date(2024, 6, 19), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('547bb98c926a47b68cf8d94fecfdcb4d55f78305befaa4e335b2372a474e9aac', datetime.date(2024, 6, 18), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.72'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('548dbaa927dc60e21d8d7321181e9a4b0470270910d6dfd07a86e4ed099c65ae', datetime.date(2024, 12, 17), 1, 'Pix - Recebido - 17/12 19:27 00060335734120 EPIFANIO P', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('54c0564af7455288040766e89261938e38c6f3fb455f5ce770cda326c7827987', datetime.date(2024, 9, 13), 1, 'Pix - Recebido - 13/09 12:44 00031740677153 ANTONIO MEN', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('553afcec7b60ef544a46283f36a338627d299154011b3f7ebfd711d20766c2a6', datetime.date(2024, 12, 3), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('17.55'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('55705d72fa1f0288e34d0f038a9865d2a71391667e192d7018f56d7f0d78351a', datetime.date(2024, 11, 18), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('299.84'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('558b602157ca500f9f0dc6441140d0d4d3511daa7b4e005b90e00b627b9f9dda', datetime.date(2024, 1, 17), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('10.98'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('558d07f32ed8e90320f4cbf2c28946d63d7e3b4944e4c0a61fabfe7ef7557c00', datetime.date(2023, 12, 27), 2, 'WOW*SALE COMERCIO E SE Brasilia', 'BR', Decimal('155.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('558e997f7f4868ced80e113d6f7433b4f3d00833be854eb78b31dfe085b1066b', datetime.date(2024, 8, 24), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('26.37'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('559f024c1b8051b39d4c103d740c4a681d13ad01bdba303f4aa674112e63481e', datetime.date(2024, 9, 15), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('55a46daaadb3bd5aef288b6607c19e60ecaa119bbc0e02edb9cfc762f20d3c11', datetime.date(2024, 12, 6), 1, 'Remuneração sobre ações - BBAS3 : JCP - FAT:11.11.2024', 'BR', None, Decimal('2.46'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('55c1d09efe5fd575dc17814900821590fde01e23aad1e6d0ddb7592bb4267bba', datetime.date(2023, 12, 28), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('454.68'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('55e38741201694ba6067a621e3fa275b55f9f1aa04f0a141581c3a7a6fb93017', datetime.date(2023, 12, 20), 2, 'MIX PAPELARIA ATACADI BRASILIA', 'BR', Decimal('327.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('55e98521e3d8677c1ffe84e75d571069a808d1927b8d8670c6b6e52ec98f4bf4', datetime.date(2024, 4, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('55f27a15c0a0b58348764150d919fcabfa4c0ef9b8c3093036a9ca56b625afba', datetime.date(2024, 4, 21), 2, 'CARREFOUR PSI 329 BRASILIA', 'BR', Decimal('213.51'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('55f2c7b3219260963d0ec52eac5e792bb75bec97977d80c2be1c6544aeec197a', datetime.date(2024, 4, 12), 2, 'SUDOESTE BRASILIA', 'BR', Decimal('59.30'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('55f85ee9c81f999ad441e9b1548d5a660b2df6fa40f43b7ef8a5d0e0a8f924ee', datetime.date(2024, 2, 11), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('565d5eba03cf7dcde4bff795e33335ce0ad6ead12c1103242825da91aaf068c1', datetime.date(2024, 2, 23), 1, 'Pagto Energia Elétrica', 'BR', Decimal('483.60'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('5685e17a8928d5851080e58c98303f953023add9976d788ac878e877b304c5ca', datetime.date(2023, 12, 26), 2, 'PAG*SmilesToys BRASILIA', 'BR', Decimal('6.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('5699215eccc8e9dea3e70982872b074ca25c177ce6f392fc27f7fd7e3b49f224', datetime.date(2024, 8, 21), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('17327.48'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('56f8c02841eafa2e882c101ed4b3a4b9aa2a611b1ba7f094ac0d614654851849', datetime.date(2024, 9, 7), 2, 'LIVRARIA DA VILA BRASILIA', 'BR', Decimal('279.60'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('5720cf5a64847e20b3f86d0bfb9fe4c8a93646c47d6ccb962814676c035d0f14', datetime.date(2024, 9, 23), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.90'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('57272146c346d09d4b76610a7ed56a6911c0fc3d3e35ef8bac3d0e42ffa2aba6', datetime.date(2024, 6, 20), 2, 'GURUME BRASILIA BRASILIA', 'BR', Decimal('238.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('573ce9cadf89442bcdae2409e3bc8a83c08c0f2e500f16ff7d008c777a030040', datetime.date(2024, 2, 13), 2, 'SL CAFES DO BRASIL PRO VARZEA PAULIS', 'BR', Decimal('1.80'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5755863da13dbd8b93775d8e4e4093989523bc3a22dde550268ee10e570d2ba1', datetime.date(2024, 6, 15), 2, 'ALLPARK EMPREENDIMENTOSGoiania', 'BR', Decimal('14.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('575b2c91623de2133c6de393cbb451118bc1e7bd0c361856ed362b53bbb122c9', datetime.date(2024, 6, 12), 2, 'FRANPESO GAS BRASILIA', 'BR', Decimal('130.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('576b0fa0d9ca9a42fbc6ac425a40cee91a5ad29ece7f5b40f3f13ba39d04c237', datetime.date(2024, 9, 5), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('53.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('57726d720deaf98844ac074be7b3f17f0fa212019641a534e91ef9c02977aa34', datetime.date(2024, 8, 26), 2, 'MP*MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('5780594d0b215ae15b148ab3ae4e167ffa83f561e6c97c04890653cce75c4bd5', datetime.date(2024, 9, 7), 2, 'DengoChocolatesSa BRASILIA', 'BR', Decimal('89.70'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('578a1705d074519df35b98c187b504fd5165a2a6d31cfb50385b34889551c217', datetime.date(2024, 6, 5), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('57b18e3755dc155ea017df33e91c3ad62253cb6c17ad9a8c81665ed2cb833061', datetime.date(2024, 2, 15), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('22.15'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5815e06a3f147ff5e6151adcaf216f5ac07ecc73492f02f9cd75665e93ac160b', datetime.date(2024, 4, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('582bad5d68d9c54c0e29a42464d72ded6e561ee8fbfec64c50a35d0a92faaebe', datetime.date(2024, 1, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('5696.06'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('586f2e9e57cd1e859b158ff08ac821aa74eb99edebfda247674800beeb19c87d', datetime.date(2024, 3, 1), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('59.99'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('587dcb2598861eaf6eafb7e94e62977ac6441e776e8da690ffb946cd072510f3', datetime.date(2024, 2, 16), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('52.38'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('58a52db562145e097b4275781d63e0d83d1eabcd64ae237ae24ad72d8bf75995', datetime.date(2024, 8, 23), 1, 'Taxa Compra/Venda Ações', 'BR', Decimal('0.29'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('58bbff05f8cd3040ab41e37484280e04e0e0c4b4b3db5b77d04afd7714ae4160', datetime.date(2024, 5, 28), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('524.04'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('58da1a29ab6357c816b842cb8e0db22ad7eb3c0beda00a80084e6766a526efee', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 25/11 07:20 Maria Eliene Oliveira Port', 'BR', Decimal('40.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('5943fbad05fd93db6c24532281f65161e310b1c0a9fe2ff5291e3a3062e3ec1a', datetime.date(2024, 1, 15), 2, 'VELOE BARUERI', 'BR', Decimal('38.54'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('5955130bed3d6aad603709c4ecf4e29042db0d3a4ea3b5937306e74908cc3bd2', datetime.date(2024, 7, 2), 1, 'BB Ações ESG Globai BDR I', 'BR', Decimal('3000.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('597b20dfa562daf530a1bf634507a54e2038feb0f92457c75f2baa228ccbc279', datetime.date(2024, 6, 28), 1, 'Restituição de IRPF', 'BR', None, Decimal('1903.57'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('597c2ac36080ea4cb31526c93cbaab9902feb733fc196dea1d44011827765840', datetime.date(2023, 12, 22), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('59953faea7d018a5a2f659e0a0732615c4cce97b121c7db6b344c2ef9dbff1cd', datetime.date(2024, 1, 17), 2, 'PAG*JacquelineMilet BRASILIA', 'BR', Decimal('65.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('59d679cdcbd970c904629225b9fd64572d9f3f3567b577bd1c9ba95959703795', datetime.date(2024, 6, 25), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('59db6918379fe824b5d9bae00ed18c67a9f5ae4d90bed4036b924e585c46dcc2', datetime.date(2024, 10, 31), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('113.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('59dc8c106d8e549f7307445fb49f58fdd6728b3690b897750518863f9316bb92', datetime.date(2024, 9, 4), 2, 'MERCADOLIVRE*SOLDIERSNUOSASCO', 'BR', Decimal('229.25'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('59f99f116a4cb86cc3e0dd3ac78adb31e4b2ae25c4e0c70b6ced8ee672bc2216', datetime.date(2024, 8, 30), 1, 'Remuneração sobre ações', 'BR', None, Decimal('1.60'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('5a107b756a0797f2238ed77f8afa924faaf428a216a635550748f4c30ed15f1e', datetime.date(2024, 2, 9), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.05'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('5a271de045a76567875da6e4dc96835ddc0b85c19e0c909bf54170a42e753d9c', datetime.date(2023, 12, 17), 2, 'BARRACA DO LORO LTDA SALVADOR', 'BR', Decimal('261.34'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('5a3c99d2ca2871709cb26c5aca2e9d70e66a7d98a89e5f24dd11b26e10ce668c', datetime.date(2024, 3, 18), 2, 'Amazon Music SAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('5a3cbe35bf2bde26bd3fcaf948aa9f0616cf7c54732007fbaefc196aafe6c15a', datetime.date(2023, 12, 26), 2, 'CAMINITO PARRILLA BRASILIA', 'BR', Decimal('280.16'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('5a3e7e452b1ac226c512b7ff702a04893694c32bea1fc62d2db7a9768d2a16d0', datetime.date(2024, 5, 21), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('5a7f372ced4cf3a6c307e350ef5e4c0af81e9d30e16e93e99d62cce3d44790bf', datetime.date(2024, 7, 2), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('5af12b7ff89b41d27df60ae6a133d20863b9388107549fdead943c3194b44635', datetime.date(2024, 4, 23), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('98.20'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5b285e82c34580503aef9531767d3c174fbd9852637b6acd64d56355d16ca7a4', datetime.date(2024, 7, 19), 2, 'POUSADA PIRENEUS RESOR PIRENOPOLIS', 'BR', Decimal('179.21'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('5b82c825e174e4bdbb7f9435bc132d7ed60162cf64e50e2fa0c32e1d7f9cd6c2', datetime.date(2024, 9, 1), 2, 'GaleteriaSerrana BRASILIA', 'BR', Decimal('187.88'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('5b97f8ae4da0734c46ab74caae0378873a3a8652d737f3b85e96690a0c02cd55', datetime.date(2024, 2, 18), 2, 'CHURRASCARIA BUFFALO B BRASILIA', 'BR', Decimal('602.80'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5bbd9967f34786dc9f93e76b6942b03f6201e3e51d4f20c16858673f3d5ab525', datetime.date(2024, 6, 3), 2, 'MERCADOLIVRE*VENDA HORTOLANDIA', 'BR', Decimal('95.98'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('5bf098bea1909e16d5239dbc1971afaf443f1bdc97003c3e56a2c23df7b49168', datetime.date(2024, 2, 4), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('50.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('5c12186d199ae6d6fada2ac8da05e020c145405c7f46fed81dc9b27d2a145d55', datetime.date(2024, 9, 17), 1, 'Pix - Recebido - 17/09 12:20 05386573675 JUNIELLA LUIZA', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('5c730ff28b80b8ddc4081b6041c46caeb48926509641ceeffdfd183ab71d8c0d', datetime.date(2024, 9, 13), 2, 'RIO MINHO RIO DE JANEIR', 'BR', Decimal('286.67'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('5cb90b993e93726adedbf10b7405f652d53930c5be578013b5390e7d96f27da4', datetime.date(2024, 3, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('19249.92'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('5cbf33f3159381c83b5686e5d7ac43dd518fc392913e6c07a16b61cdf11c8199', datetime.date(2024, 11, 1), 2, 'GITHUB, INC. HTTPSGITHUB.C', 'CA', Decimal('60.09'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('5cd4c7301a29ce880c423baff3d895630f65d818574b8d0429680113cfde77d9', datetime.date(2024, 1, 25), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('5cd7c1f19d287d6b0b0a467880933db0b9bcec4c7f9e0f8f07145cc2af569739', datetime.date(2024, 6, 21), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('17.85'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('5cf5456cfc72aa776624a9db783150d60656afeeb37217358fbd2ecaed08ef27', datetime.date(2024, 9, 13), 1, 'PLR - ', 'BR', None, Decimal('29039.90'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('5d15a6819a8baf91790f9b65dc2196919fa9de32a86bf9ec4ac9d2c8aad0c36e', datetime.date(2024, 11, 13), 2, 'Jose Fernando Valadare Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('5d1cc6eac08138f574f521d7e06e0b2c199731dda8ed23bb54b73eab6dec966d', datetime.date(2024, 8, 16), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('26.59'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('5d58a396e898011c4935fbe5fb45ad522d5d84c1fcd5b3903421f6394b502464', datetime.date(2024, 10, 21), 1, 'Pix - Enviado - 21/10 15:49 Arlete Maria Moreira Carne', 'BR', Decimal('60.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('5d6a55d2cdfa50ae29ff58a25b53811c8e69742d26749540a71292f4ec9ebf24', datetime.date(2024, 10, 30), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('58.24'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('5d9b9fb28bfe6d41049efd5da706d421fbbc819ecc3e1e1592eed6e55b351577', datetime.date(2024, 6, 25), 2, 'OLINDA COMIDA NORDESTI BRASILIA', 'BR', Decimal('62.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('5dd85d38207cc8f7ab29f9936b1e8e8bafcdfa41b495ffa81b822606b0ab5233', datetime.date(2024, 12, 12), 1, 'Pix - Enviado - 12/12 13:47 Vibra Energia Sa', 'BR', Decimal('95.99'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('5dd8fbeda77e9be80faef45246e20f94459955ccb0caa058ead53eb3d2e78122', datetime.date(2024, 8, 21), 2, 'MERCADOLIVRE*3PRODUTOS OSASCO', 'BR', Decimal('65.96'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('5df40f660bd0228f62500917d44f4297e68d68fe20a862ed939a673ff74cd2f1', datetime.date(2024, 1, 11), 2, 'ESTACIONAMENTO RIO POT TERESINA', 'BR', Decimal('9.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('5e2b3ca0c7afef144eb7607abf49440a9f78ff00d6c2bd4e2eaab28d895da679', datetime.date(2024, 11, 29), 2, 'TOP PARKING BRASILIA', 'BR', Decimal('29.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('5e49dcc97b3709308d225cba76052db58586542d149b8d579fed287830fea9d7', datetime.date(2024, 2, 9), 2, 'MP*2PRODUTOS OSASCO', 'BR', Decimal('538.08'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5e5b492b16e9a1030b3576325ee87963a01db4930c820800290a948883fc3e28', datetime.date(2024, 2, 13), 2, 'ONI UNO GELATERIA LTDA BRASILIA', 'BR', Decimal('10.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5e6c3c602e1f71ff44447300a84866c009e0ba72338e5fdf9c15b887f3e409fd', datetime.date(2024, 10, 30), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('5e955d0344a4e23fc9c5f593ecd6a377ce164760880d4e1699870ac3f416412c', datetime.date(2024, 4, 27), 2, 'IGUASPORT LTDA BRASILIA', 'BR', Decimal('124.97'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5eb27d2a0ddbcf699ecdc9b4e0a764df83114f76ef975d39f9d35942fcd2ed9c', datetime.date(2023, 12, 13), 2, 'PAYGO*PEIXES CAPITAL BRASILIA', 'BR', Decimal('35.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('5ec2aff36847198106851600684e43f1d685ed01be1682bd366bfa0eee16dc68', datetime.date(2024, 5, 26), 2, 'UBER * EATS PENDING Sao Paulo', 'BR', Decimal('705.82'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('5ec8cc0be5c005272bb6166daed4d6ea8e5e7a863a5c4a6af1946878b5fcdf1f', datetime.date(2024, 11, 25), 1, 'Pix - Agendamento - 25/11 05:31 Manoel Erivan D Da Silva', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('5eca6d982c75d1b9ca23297094351bfc1465dcda2e9e29953cc6d51ac6ec6e45', datetime.date(2024, 7, 8), 1, 'Pix - Enviado - 08/07 15:11 Avelart Mobiliario Infanti', 'BR', Decimal('111.02'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('5ed34ac55b465c47fdda1cc07de063fec6ee7491357e9f7bc23a4ace243d62d1', datetime.date(2024, 3, 24), 2, 'PAG*GaleteriaSerrana BRASILIA', 'BR', Decimal('164.78'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('5ee40ad4091f11397617421739ae47796f36ddcbafffa334a7c8946aaf00eda7', datetime.date(2024, 4, 14), 2, 'PAG*Intimavestuario BRASILIA', 'BR', Decimal('173.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f071f54178599aa22edf4d65a70c1f7a9ca8e0823782a29b4bde212b5c9e996', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 07/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 7, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f10452e0f578b6e781b9adcb15be1e28f5c1d55846298d3541da603b876ded0', datetime.date(2024, 12, 6), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('7.94'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f36d40f47d3aa586a82be15d917ffbaafa44d5f669d8d95aa9a6aee9dcb4a5d', datetime.date(2024, 7, 16), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f4ed4f42cf43639a217b4a95ab5f4dfece9459b99cb613bbc8cef61c8f0495b', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 02/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 2, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f56b675b8b63e2661155946809fb554c5edb2df2144d481a51c0d3020578c70', datetime.date(2024, 1, 15), 2, 'ifood *IFD*MIPA CULI Vila Yara Osa', 'BR', Decimal('157.99'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f60038b5b4ee68eb35de6c70da96a69c84303d17afff5989e517d22753b58c6', datetime.date(2024, 11, 11), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f640a7d32665f4f806e1125852735d8bd466c70207f0912276b8b60ae945368', datetime.date(2024, 7, 19), 2, 'IFD*RC MELO COMERCIO D BRASILIA', 'BR', Decimal('138.30'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('5f8dd8de61887efbcf6c1bd9e204a557f43b41ef17afb0742735d0a4e7ecea05', datetime.date(2024, 10, 9), 2, 'IFD*CHINADIFANG COMERCIBRASILIA', 'BR', Decimal('153.60'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('5faae150b62a8fa20eac785e6c496965225609d0c07bbbae1e3934dc31d5a117', datetime.date(2024, 7, 13), 2, 'PAG*CidaRommanel BRASILIA', 'BR', Decimal('30.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('5fab5399b87d8417ca0931ee08757cfca72b62776727304c281125d0f2bb3f41', datetime.date(2024, 8, 21), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('5fb93c4b504db768958146d67b7f31295b6fa5000c3a5e11732f17ef282afb26', datetime.date(2024, 12, 18), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('9.90'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('5ff042b48deeba9c9c82c1bac68700cb49e525bc289ce6120cc4088c83508c02', datetime.date(2024, 10, 6), 2, 'IFD*MIPA CULINARIA CONSBRASILIA', 'BR', Decimal('82.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('60044b05db431a6b3845c87ce77502a247fb0a79a0b250b32f385057a2de6288', datetime.date(2024, 7, 2), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('11.94'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('60131c213e1e5e37dcd88ca334a24cc87224ee2fd37e5105d74f0df19233a963', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 22:27 62067508172 KARLA REGINA C', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('603518d7249ed6b2c15dcfc243d61a7d6d60e6518d29eebd245e93f3db0fa308', datetime.date(2024, 8, 25), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('7.12'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('605930a56ad3625d8eee5fae773bb7b879d589b29ff1665f2d14aa46294419c8', datetime.date(2024, 10, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('607194cd9d303cc2324f50fe795306681e3432b60c1402752f23872da0fb5ca2', datetime.date(2024, 1, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('607820203cf37f4f44809a751d461bf07dcb1feda67c424df89bb7a6b5118d30', datetime.date(2024, 11, 1), 2, 'MP*CREDITT OSASCO', 'BR', Decimal('290.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('6078d13394baffab792d33fc57fbf1c5c016b3c1f04ba42f8845e0845479b867', datetime.date(2024, 5, 16), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('9.81'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('6088ca47cdeb36cd3d40766b47895df7ccd0ff2a738db731d41c9c7165c895cc', datetime.date(2024, 5, 30), 2, 'IFD*EL PASO TEXAS BAR EBRASILIA', 'BR', Decimal('204.99'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('608f87d5d57b6b4e70a0d20abfd34a67e8316217974e5bde721d0724e193a2f4', datetime.date(2024, 9, 13), 2, 'IFD*DOS ANJOS RESTAURANBRASILIA', 'BR', Decimal('92.30'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('60a39a2f1d61ec5ee8f764893d46cc1f1ce4f5f45399ecd1c2dc8fc8d82fceed', datetime.date(2024, 3, 10), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('29.93'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('60b027b6a9043328f428730b8d5ee28a19f721a475e81101680b6506f0c84219', datetime.date(2024, 1, 2), 2, 'ARAUJO E RIOS LTDA PARNAIBA', 'BR', Decimal('20.06'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('60bed5e8e7da4b25b3e75ffff588a4b0da12548d5ca54ad84ae26e9e63cc9eda', datetime.date(2024, 7, 22), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('97.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('60f484ff10742a7ade499c9a68e86d67e4e46162f2f3eb88bf07b6a33cc6888e', datetime.date(2024, 2, 29), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('46.89'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('611677380776f1108be381b0d81c95abbc7bc3b25710fef1746792f73a16fb0e', datetime.date(2024, 3, 20), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('516.80'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('6127cc581ece5e8766f3c993f2379cca3ea7d9cbbf942eacaf036c9c4ab71923', datetime.date(2024, 7, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('615717d22a5fe003d11f44b2f93e17faaeef03efc44c6038723912f2280db2c1', datetime.date(2024, 9, 4), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('151.79'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('6171e8190d6c5d03a98de5af344da294799f712e71a9f2d1c384dc577de6c5a3', datetime.date(2024, 6, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('618e9ad0264d4f4d1a2216c1d0162fc1874afefa662a5b90dda9a86d005f48cc', datetime.date(2024, 7, 3), 2, 'PAG*Lakitos BRASILIA', 'BR', Decimal('17.86'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('61997b50953774d6ab34e5b99119e1ffb03ce01309bd6903eb54ca2fa7eb15cb', datetime.date(2024, 6, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('61d04bc217eb86c290882dcc9b380d852af99c67eb8da3b840089ed7e210963f', datetime.date(2024, 7, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('24420.24'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('6276d7f1c12677026b8e2f6dae0b1dde4282e238f055ac5163aca821f230301a', datetime.date(2024, 2, 6), 2, 'IFD*TAIKAN FAST SUSHI LBRASILIA', 'BR', Decimal('149.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('629b3072527fffd46b152ab7c3a78c2913508b4edf1b75909aaecfe417929f47', datetime.date(2024, 11, 23), 2, 'BONNAPAN SEU DIA MAIS BRASILIA', 'BR', Decimal('13.90'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('62a7cd95716db9d2e4f1aebba46921c46b6c204d9a051fa86614280007057e9f', datetime.date(2024, 4, 3), 2, 'MERCADOLIVRE*AGUSHOPCOMOSASCO', 'BR', Decimal('31.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('62b25aa8955e5d6ca10cfb6c2778a11171a78629aaa7c108a7a15b5400b14f60', datetime.date(2024, 6, 3), 1, 'Pix - Enviado - 03/06 07:15 Jose Reinaldo Da Silva', 'BR', Decimal('123.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('62ccf6573e9f85bd6eaf688c332725725f2eb0c09d82460166f19c2bbbf96bd8', datetime.date(2024, 7, 23), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('62eaa1894825f014c85cb43ab84ab88d605e2a36124b848273b55b09bbc2c1b8', datetime.date(2023, 12, 23), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('110.88'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('6357e78beb7d5e23f6efb3223c62661f36f54107aaa0830d3a01a83aca5ad5f9', datetime.date(2024, 11, 18), 2, 'NETFLIX ENTRETENIMENTO BARUERI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('63642f820b7042fa679447eea49977c463cb81cf3bc8aeab7a98b52c6b6ce1f9', datetime.date(2024, 4, 13), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('300.96'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('636a1f51b582bbcf5ae6b2a666cdfcd44408a609ae8a7c6615f931f7dd22e361', datetime.date(2024, 3, 28), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('14.31'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('63cf00dae59899e5a9c015ea421ca1528698aba67e34e72c8dee2384f2a204e5', datetime.date(2024, 12, 8), 2, 'POSTO BARAO DE ARARAS ARARAS', 'BR', Decimal('227.54'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('63e6f921d6c315681943ccd9f96e057494a358d9bd77342708fd5571beb2f502', datetime.date(2024, 7, 30), 2, 'OLINDA COMIDA NORDESTI BRASILIA', 'BR', Decimal('66.45'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('63ed424847c5867b82c1ee4b53bd3d0916eaf9869206ce9f0167917c1e5805ca', datetime.date(2024, 2, 12), 2, 'SL CAFES DO BRASIL PRO VARZEA PAULIS', 'BR', Decimal('1.80'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('641a6ff8268a5cdc57d83a0efd81956314180f803107b9824f4d5e1de63a52cf', datetime.date(2024, 2, 19), 1, 'Pagamento de Impostos', 'BR', Decimal('2805.67'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('64644b869a62cd7dc390abc9d2c84db088cb86d25751685b4530adb34abab669', datetime.date(2024, 1, 8), 2, 'BGK POUSADA CAJUEIRO DA P', 'BR', Decimal('200.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('64b21352149e2a5e2aaf3d8a0a0ca3279c87a8854cda01bdb95304870d738ccc', datetime.date(2024, 12, 10), 1, 'Pix - Recebido - 10/12 10:39 51758075953 ROBERTO CARLOS', 'BR', None, Decimal('1000.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('655d2737e60ff0e948b05cc51b8f0c8d50fbd1df3bf4a1d1281395b99691681e', datetime.date(2024, 4, 15), 1, 'Compra com Cartão', 'BR', Decimal('234.70'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('656784677b9fca74a2bb8a3309797a8994dd879c620082c9ee8f7405f93e6599', datetime.date(2024, 10, 25), 1, 'Pix - Enviado - 25/10 11:25 Maria Eliene Oliveira Port', 'BR', Decimal('40.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('65682480ef565017ab820091cbfab75d7f7135c6c6c1b70b2fa0658dd0a2e7b0', datetime.date(2024, 6, 25), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('11.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('6584f23a1b480a3a013c70aa82b995cbe36a788788af40eb44d7b314ce9576b2', datetime.date(2024, 1, 3), 1, 'Pix - Enviado', 'BR', Decimal('16.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('65ac9631bf9e3ada7b0658d84cd5b5d69d8e5c9fad9c73873ee04955593d5f34', datetime.date(2024, 5, 14), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('38.90'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('65c4176abc0ac2b949cff4cf83d8523c68aee7d12aacc498e5989e845c8dd08f', datetime.date(2024, 8, 14), 2, 'LE VIN BRASILIA', 'BR', Decimal('160.47'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('65d29290d4c7bf91ec84e65947dd4b5952100fc428ba213f554e6cc34c4e622a', datetime.date(2024, 12, 3), 1, 'Pix - Enviado - 03/12 06:58 Utb Uniao Transporte Brasi', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('65e0017393714ad88f9f24c189ad873488ee97d754f915826e3be5325e83419e', datetime.date(2024, 10, 20), 2, 'Guilherme Rocha Ramalh Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('66158a89bcd8ffb1f8e3e88e2ec2ad467051e6ebc861990083c1085934c50efb', datetime.date(2024, 10, 29), 1, 'Cashback automático cc - Cashback Automático', 'BR', None, Decimal('180.19'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6628ea08ebffe56707c8d536f71bf53ea86eb89a41215ffe2873ea7266d998a3', datetime.date(2024, 5, 22), 2, 'ASA GAUCHA RESTAURANTE BRASILIA', 'BR', Decimal('63.70'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('662d2ffd277d2960a3f2b6d0b6c8d522b405caaf34bb5a36372155a2d187ace6', datetime.date(2024, 9, 25), 1, 'Pix - Enviado - 25/09 15:24 Manoel Erivan D Da Silva', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('667833c7ce78f845ff20944d482d430a288663a1cc8ed3b3f749cc228aa46408', datetime.date(2024, 3, 13), 2, 'CODA OIAPOQUE', 'BR', Decimal('110.83'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('667de56ef39811eb6fc43ceaf9fda8e82e73db9fbcc16b94d9469077bc5c9b51', datetime.date(2024, 10, 16), 2, 'UBER * EATS PENDING Sao Paulo', 'BR', Decimal('306.86'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('669533f306156b395b38025db40b9037dda139ee8dfa34062703ccaae80d5591', datetime.date(2024, 3, 1), 2, 'MERCADOLIVRE*SOLDIERSNUOSASCO', 'BR', Decimal('311.81'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('66ae40b22deb4e977aa283598cee9a9b9ab0e76cdedcb0e1814b77a6a85f3800', datetime.date(2024, 11, 3), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('100.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('66f1c4f4c9fbce4b647c96e83197e1aa700390d354390bca83d6653a0cb32bb5', datetime.date(2024, 7, 13), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('4.50'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('674333613b4d74c538d11f8ac592f99d75a4440a7beccb9ae3b04d3c1ac5ef10', datetime.date(2024, 8, 12), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('67623132b416bac5d74973febe2e7de9dcf8456f07d505fc66a2e8255e5e9021', datetime.date(2024, 8, 24), 2, 'IFD*Patrick Alves NunesOsasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('67643dbb18d951f3e0b50517724f0d0f763001809346c57f4c8e373b4157fe5d', datetime.date(2024, 5, 29), 2, 'PANINOTECA BENITA BRASILIA', 'BR', Decimal('134.40'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('67803f86d976f02368ebd0315c2bf3865cd54ccd08645b6d6ca34565de7bcbfe', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 21:55 01685786111 FERNANDA SANT', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('67999a4326981f59dd91197f4e01684e6fc71ab8121f7e6f2b28e443e7b0fd61', datetime.date(2024, 4, 27), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('132.51'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('67a651733910f0a640aad47e779a78f477273011f7f50ab8cb05678f0576f28c', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 07/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 7, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('67b8009d6fd004bbe985d0b951fb6edba74138202fbce4bc5ab6c7f8ad521c7e', datetime.date(2024, 10, 18), 2, 'IFD*IFOOD CLUB Osasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('67dc26c7c4331abc4a208b15d866db5eeab32bc25051a85c188a275532557053', datetime.date(2024, 12, 4), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('627.68'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('67e33834022b7785b68aa2f75752b0f15a6e0241925e7b1eaa09a31c9847d868', datetime.date(2024, 2, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('680b980b7c1d0bd638c1ccc4d92bdc3eb9857be45cd72f17d8f71f24a9e77739', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 08/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 8, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('683e0f6f76c693b6fdea77d2e7adfaa005ace6c782a27107dea3ff94ff2eaca0', datetime.date(2024, 7, 8), 1, 'Pix - Enviado - 08/07 10:53 Moov Comercio De Suplement', 'BR', Decimal('400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('688d7431c5ad43204817f32fd839792dbd2e637eb731d2d9a5fd3af91dca2448', datetime.date(2024, 9, 11), 2, 'HOTEL REGINA RIO DE JANEIR', 'BR', Decimal('583.80'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('688fc17a9ed0556343e02f6a3ab733d16f334f49e4320a0468fbd46e7706ebd3', datetime.date(2024, 6, 28), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('27.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('68c57146cd29205624df328a86a38b99a7dcf42a0e42a6a928b5492bd7591d65', datetime.date(2024, 7, 24), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.98'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('68d8314ced46f63862c6081808516c537b0eedb53d932ea3869e92147b77a493', datetime.date(2024, 3, 8), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('68e2230e9db049171248f516750b48e64182b131cf303f6d6e7f2630c5ff7bd3', datetime.date(2024, 5, 13), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('6910469fca7ffb1cf09f92ef6be7cb453076b6d303922756551db33eee008b0f', datetime.date(2024, 7, 1), 1, 'TED Transf.Eletr.Disponiv - 104 2272 28986008149 MARIA ELIENE DE', 'BR', Decimal('1481.73'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6930772e80571ed5825bbb10b01e4abf5b9fde5859a94147451c6cac717f66ee', datetime.date(2023, 12, 22), 2, 'NINO BRASIL BRASILIA', 'BR', Decimal('236.20'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('6956008806c4bccff31d7a06fa107c75dc0d12739e5cdcdc43e9052806e8afda', datetime.date(2024, 10, 13), 2, 'AIRBNB * HM24HRFXQH SAO PAULO', 'BR', Decimal('538.33'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('696e6936998d5490e6e49adbc357f88a640fbb3790e1f83c51443102e060eabc', datetime.date(2024, 1, 10), 2, 'PAG*PousadaVila TERESINA', 'BR', Decimal('800.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('698c52b86b0943f1cbde4297dd0a77b5fcdb00b333acffa598eedc873d0ab23b', datetime.date(2024, 3, 18), 2, 'FEDERAL GOURMET BRASILIA', 'BR', Decimal('18.85'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('699c546ed26470ad8410dffe2fc42dcc227bf399cc0424d063d44fecebd54985', datetime.date(2024, 3, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('69adbfa1cccd29aa90f343b15bedf01b58a605f4f1c65e2ce83b2ffbab16f8b9', datetime.date(2024, 6, 18), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.53'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('6a11bcfbc410f845db70b0732ba80cb810f9d4c78287ee4ee9058949527465e5', datetime.date(2024, 7, 23), 2, 'PAG*DiogoLealPimenta BRASILIA', 'BR', Decimal('183.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('6a16814a110ac1a96e9c79c945923d216464029bc5f1b472a544647537d22fea', datetime.date(2024, 7, 29), 1, 'Pix - Enviado - 28/07 19:59 Neudja Nogueira De Figueir', 'BR', Decimal('240.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6a3b914ada1cca9aa25e2ab3f47060452aa5526aabf74f77a482056ab226cede', datetime.date(2024, 10, 29), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('19.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('6a5096ee03ed31fe18805a25fb465e93b6d2512e90ae39a5263b01134bf78075', datetime.date(2024, 6, 21), 1, 'Pix - Enviado - 21/06 13:23 Francina Noleto Aires', 'BR', Decimal('180.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('6a8ba75c41a7835423235337abbc953f17ee016984453b6b97d7961ee1c33870', datetime.date(2024, 8, 13), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('6a8d611b461b2d3c504cc056d9cfdd906ba63b22bf6be1532b1e6a4b253ee73a', datetime.date(2024, 2, 23), 2, 'MERCADOLIVRE*MARIADEJANOSASCO', 'BR', Decimal('49.11'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('6ab62b0bc006e26e33c45bf7f028b2f9c4968aace9cef70e06f89da3aea29fcf', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 02/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 2, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('6ad6ae08f2f95be00f96102946d4ade7692019490cfb2ed2c79aebb4984c320b', datetime.date(2024, 10, 28), 2, 'XsollaGames Sao Paulo', 'BR', Decimal('9.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('6af10f51ebe5546555cb6b64819e387662724aaa0cde1d060838b28433ad2742', datetime.date(2024, 1, 8), 1, 'Pix - Enviado', 'BR', Decimal('14.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('6b17ee121b62ffd666dbd217d0f32bf936c260365f949a5e66c21950a56e9a30', datetime.date(2024, 4, 29), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('119.39'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('6b288acbcde71b6e6d85294b2c3cf8afc66d07df70ed3b82bc32a3384ea4fcd4', datetime.date(2024, 11, 6), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('28.89'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('6b469b9d35f1630486ae4679554c9ccbcfd96bac880b78428a0f6d73dcd8d483', datetime.date(2024, 11, 14), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('65.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('6b9a9004dbee231ee3df6e4dc800336b463269b0deb14b1f45aee6ddc388dbe1', datetime.date(2024, 9, 12), 1, 'Pix - Recebido - 12/09 14:45 00039933750178 ANA CLARA B', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6b9d66b27d53d96bf8535024357318a0dc9241efcfc75fa3f100aaf923b20ae0', datetime.date(2024, 8, 29), 2, 'MERCADOLIVRE*SANTACOLOMOSASCO', 'BR', Decimal('379.90'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('6bb0a6cdc8a1c30eb57fffaa74425b4ac662db5297754711c283aeecb35952aa', datetime.date(2024, 1, 29), 2, 'HOTEIS F. TELLES NETTO RIO BRANCO', 'BR', Decimal('1455.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('6bfea3997962d9d0d0de358a5794c23eed968f382a7d7e0786de7f0c82a3e148', datetime.date(2024, 3, 15), 1, 'Pix - Enviado', 'BR', Decimal('360.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c128e4f8cdde2c6f93b564d6f0998e45bdfac6635646dfa15311c19befe2732', datetime.date(2024, 2, 19), 1, 'BB RF Ref DI Mega', 'BR', None, Decimal('2805.67'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c19d3c9e4884b1c43487e192fbf35575cf13d758ffd250ba234d4bbf3de224e', datetime.date(2024, 7, 25), 2, 'MP*5PRODUTOS OSASCO', 'BR', Decimal('308.93'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c25feef582704e9c7bbf4d963a06c22bc427d654787524e2086f553b8306fc0', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 01/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 1, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c5dd8956621e04b9cd77b5b77fa25b180ef981f75b8cfd11a35abb1372fd8df', datetime.date(2024, 1, 10), 2, 'MANGATA PARNAIBA', 'BR', Decimal('300.50'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c68e36d7c99a9a416d0212912557d131b4cdfa3e87f9d8a29ff5953b11b8f90', datetime.date(2024, 6, 25), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c846d4a9be675b5b40164ff1546ef376420836774be3ba17b76abfcfbb05ba2', datetime.date(2024, 7, 22), 1, 'Pix - Recebido - 20/07 13:01 00002332635351 DANIELA MAC', 'BR', None, Decimal('80.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6c88b2f39ef0f54097c1859d91d153a220000216fd786799bb50a9b978a933ef', datetime.date(2024, 11, 21), 1, 'Pix - Enviado - 21/11 12:55 Joao Pedro Tobias De Olive', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('6cd8dd09c27aef268b6e890969d5cd4c67915e18233a3320c5b67a8dbbab5ed2', datetime.date(2024, 7, 18), 1, 'Pix - Enviado - 18/07 09:41 Maria Eliene Oliveira Port', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6cf1b19381a438edccbc23403ab139ad9956b2771831baa27b7c53654f275ea7', datetime.date(2024, 4, 3), 1, 'Pix - Enviado', 'BR', Decimal('1250.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('6d18caa9d4daf859dfcd8b0190778a57aa7c30060c44be12142d17df61e9ec8b', datetime.date(2024, 10, 31), 1, 'Pagamento de Impostos - DETRAN DF', 'BR', Decimal('104.13'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6d25d1f835cf890e1f84efb7d45bb00c1f65b00ecaf3097e40f05049fdbd2d2a', datetime.date(2024, 6, 14), 2, 'PG *MVP FITNESS MVP FI FRANCA', 'BR', Decimal('531.76'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('6d4317cb1a18ab8f24c8a52b33d70d2e78aef8249068330e04b43b7b732a2eb6', datetime.date(2024, 1, 30), 2, 'RESTAURANTE DA JUSTICA RIO BRANCO', 'BR', Decimal('15.45'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('6d7c52030d08f94f993e1c7b1bd6ead8538fc40f79162589d981e5c90183f770', datetime.date(2024, 7, 13), 2, 'PAG*EduardoMeireles AGUAS LINDAS', 'BR', Decimal('22.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('6dc4860a23762457b7c6931333794d215fb54f2bfdac932128ff6427ff823cf7', datetime.date(2024, 12, 17), 2, 'PG *ZE DELIVERY ZE DEL SAO PAULO', 'BR', Decimal('50.23'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('6dcbfa2313a7fbf7420e1a84dd158fcae7945899f261c74c8b9c958190a36d79', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 22:54 00082449880534 ISIS POLIAN', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6dcebfd2d3b5f016f3436ceaeb4153ebe435b00de549c971c581ec2042523bc5', datetime.date(2024, 9, 6), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('3093.52'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6dcee1cca1db875bc35a69d55c31ca5b5410c1a4521bf58ab56aa5fac73abd5c', datetime.date(2024, 3, 18), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e1e16cc3df2cf138cf4fdfde02320ad97d07edee5fa3bcdcd38cf7cc1638279', datetime.date(2024, 7, 30), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.94'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e2b59f93a10cd0c4e199fb021194340809fa489cee6ee1c034d976f346779ab', datetime.date(2024, 1, 3), 2, 'PAG*Rodolfopratas FORTALEZA', 'BR', Decimal('635.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e37637f81c7ccfe1cfbf361e321a9d4cbef553427fa8891bb3d0407b9a4935b', datetime.date(2024, 7, 13), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e57e5b60f63e075b16563891e6edab010bc36dc98934acb3fdb04c699db941a', datetime.date(2024, 9, 25), 2, 'CAPITAL BISTRO BRASILIA', 'BR', Decimal('105.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e5f06b7787f44383d3ee4ab6d93ec819d1c6969d5de03931fa4a50e70c2616c', datetime.date(2024, 5, 22), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e63d522237fb38df02bd83bc00b4c5fa28f91f61ff7f64138a5160fac7696fc', datetime.date(2024, 2, 23), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e80f64ffb561eaf167ee31e1427aca8130348506ed98ebd42f6a23d54b1b804', datetime.date(2024, 9, 30), 2, 'MERCADOLIVRE*GHSHOP BRASLIA', 'BR', Decimal('97.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e81928fe9709b5862766e0635df0457c77f1ca6d57b2ef608252f81ca33fb8c', datetime.date(2024, 12, 11), 2, 'O CELEIRO DA CARNE SAO PAULO', 'BR', Decimal('222.65'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('6e9aa4d63843fe23b804e16520f8b72b9f6322e45d43d2b9039b78ea75621658', datetime.date(2024, 1, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('6ea8a10247c4725755fc6624f3a753d8ba779d553f59ea2714024d1430c7a9f0', datetime.date(2024, 11, 19), 2, 'BRB MOBILIDADE METRO BRASILIA', 'BR', Decimal('5.50'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('6eb53e0ae83a5d87c2b07f655f5d40b7546fa8b5cdb26ce4804f887fa2167359', datetime.date(2023, 12, 12), 2, 'AMAZON MARKETPLACE SAO PAULO', 'BR', Decimal('47.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('6f2e6bd8b47fff9dbe43276c524928bd2e73498339bc7e69c7f7da657d01b6e2', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 07/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 7, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('6f5471ca443822bb1af59b42d8ed15d4b6b8cf5cbf3f997374f4a085370f36ac', datetime.date(2024, 6, 22), 2, 'IFD*O PUDIM PERFEITO FABRASILIA', 'BR', Decimal('84.90'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('6f6b4a4adfc832d476e79c0d7d6d4c90cac9b634eb9eaddb16628d518166975f', datetime.date(2024, 1, 17), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('3.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('6f6e79b5d237c49813b73fcf3102e54d7898a52172505ee3109d38261bcaf622', datetime.date(2024, 9, 25), 2, 'CARREFOUR BAIRRO - DF BRASILIA', 'BR', Decimal('94.41'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('6f862650b7e93d1e2861cbdaa4623314ebf1f2df18988bbf719f86b6a2456471', datetime.date(2024, 4, 27), 2, 'IGUASPORT LTDA BRASILIA', 'BR', Decimal('139.98'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('6fb280259adbc4b9a0ca344fcb0e95ae70560b8df631c3e008be53788dc78fb7', datetime.date(2024, 9, 23), 1, 'Pix - Enviado - 23/09 19:32 Pousada Vila Coqueiro', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('6fca495865e1fbb79f69a99edbc7e8991d63ab380a9ba124f63ee29cc22f9d02', datetime.date(2024, 2, 9), 1, 'Pix - Enviado', 'BR', Decimal('260.91'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('6fca9ef2f728a5be146ea41baf13aa57bdc365e6a156a7ed4bccccee38ae84fa', datetime.date(2024, 3, 25), 1, 'Pagto Energia Elétrica', 'BR', Decimal('616.99'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('6feba8303742384756c36a32de2b4eb1155849e89ee94a29290718954760ee89', datetime.date(2024, 10, 3), 2, 'SALVADOR BUSINESS FLAT SALVADOR', 'BR', Decimal('18.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('6fedb2599a2c8084ab1dbe5ef1713d8ab62e10ea54670d17e84a720a376be666', datetime.date(2024, 11, 21), 2, 'EBANX*Blizz US937 CURITIBA', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('6ff1bc4a47a63972939cfb52cf82bd0e77d6f39b9d73bdf32dcbeff7d10e9ac8', datetime.date(2024, 5, 28), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('12.71'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('700099bb64cc0a3ea117e82241690829ad1c8e95a29996af9a595d2477e1e771', datetime.date(2024, 4, 24), 1, 'Vivo Celular', 'BR', Decimal('240.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('703158ad9b7df39b0aa3192f51272602a67f865b80ae3d57781f0546937c2a1a', datetime.date(2024, 6, 20), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('9.93'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('7035324e242cc21b7dad147beed108a7e8ee7c95344c75d2267a47bfc38fdbe7', datetime.date(2024, 4, 4), 1, 'Pix - Enviado', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('7039910cf429a2b85cecb0921b4206cb9a648b88e73c41495cf988c01f97501f', datetime.date(2024, 4, 3), 1, 'Pagamento de Impostos', 'BR', Decimal('413.82'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('703d91ac857c4a315eb4bf1dc930a1cfcbc3ae45a8dc50cb8ceabaf1be630e22', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 03/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 3, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('704ffb38adb86136211caba3c81f370e511d912897c1f9a281618297f35881f5', datetime.date(2024, 3, 19), 1, 'Pix - Enviado', 'BR', Decimal('680.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('705677cb02999841fbc777ee2182dced8a53ca9193a1b40046264d1c49cafb92', datetime.date(2023, 12, 28), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('55.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('706adc2c780bd9768c7a5f718200923a189d8af3f7f0c774e3edad3e2694a8ff', datetime.date(2024, 2, 26), 1, 'Pix - Enviado', 'BR', Decimal('155.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('706b429e1ae38a72698b732ebda60f618b8278628a172e52d6823943671606ed', datetime.date(2024, 2, 7), 2, 'FEDERAL GOURMET BRASILIA', 'BR', Decimal('14.10'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('707974b1beac8508457c55af233ec30a932777ac27b1b245fc8cee247664ad20', datetime.date(2024, 7, 18), 2, 'PG *S S MENDES COMERCI MOGI DAS CRUZ', 'BR', Decimal('150.12'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('707b13a6bf51bbf60c20a319c5bf6bc59588f9fd644999c0c41eb1261aeef58f', datetime.date(2024, 7, 12), 1, 'Pix - Enviado - 12/07 08:20 Maria Eliene Oliveira Port', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('708a1f91d1e7986d803a02915398d06b58a42d9b5f9ce637ab47df2ed1a9ac32', datetime.date(2024, 11, 26), 1, 'Pix - Enviado - 26/11 13:41 Edson Lopes De Oliveira', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('709f4a195b320f51bd2dbf8b8c66caf9a33ddf74a06adcbd22ef0524d4c042fb', datetime.date(2024, 6, 28), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('16.47'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('70bb76b7c1464f91aa1fbc593ae0f90d8cd0e75be6ae96c4edae27be9ec0d65b', datetime.date(2024, 7, 1), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A', 'BR', Decimal('1412.93'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('70c17f653d378889ca9c4683900b4716893e18c4b5b888c164c6bc7e45c089b2', datetime.date(2024, 10, 24), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('357.96'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('70d29815482dbd8f992a7aec8cdea5f0a68f114dd3ed5ee8df4063e87ed56238', datetime.date(2024, 12, 16), 1, 'Pix - Enviado - 14/12 10:24 Francina Noleto Aires', 'BR', Decimal('150.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('70d2d71e8ca64fc9f475b4ffdcf5a01c6f11fdd134df1ea115dc0654b8a45e48', datetime.date(2024, 6, 3), 1, 'Pix - Enviado - 03/06 11:27 Neuropsi Psicologia Basead', 'BR', Decimal('1750.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('70e15e77023e66cbe4c277c1391eb15fec145112638f2de618fc5849b9e1c60b', datetime.date(2024, 11, 1), 1, 'Pix - Enviado - 01/11 11:07 Maria Eliene Oliveira Port', 'BR', Decimal('1481.73'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('70e3a99250ac97b0f94e2cfeb298e8b3679050e285060f81ce5857bd3d1f480b', datetime.date(2024, 8, 23), 1, 'Taxa Compra/Venda Ações', 'BR', Decimal('1.46'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7101a3b01c3f2d7242e02f832db6cd404040d4a9c18d0b5ebe7363de56ebdf1c', datetime.date(2024, 6, 1), 2, 'IGUASPORT LTDA BRASILIA', 'BR', Decimal('339.95'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('7108ee6180f20dfe9dcbecf9abf8b8145f5fa878fc68485068572edaff818c80', datetime.date(2024, 1, 2), 2, 'PAG*PousadaVila TERESINA', 'BR', Decimal('600.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('711aa97b620deffe21a78f2ea34fb9502f02e63cd90f3ac03334345fd1c35228', datetime.date(2024, 9, 22), 2, 'ZIG THE GLOB*ZIG*NAPRA BRASILIA', 'BR', Decimal('107.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('71258e630c774a9d8f1ae4c9dcb3488216a2410fbbcb9b6c3501f929e94ef0fe', datetime.date(2024, 8, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('713175ded5f7796df6d177087607a6ce73c87d46241d6d756dc576caf0c81b96', datetime.date(2023, 12, 30), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('713b4f3191d35a064d20d8d30ed205d93b50c6e79798abe3c8a8df0b7ba8d729', datetime.date(2024, 9, 27), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('85.36'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7156f15750c243793549fbe30d654b77c3e8f9216ccad52bca5174f668555497', datetime.date(2024, 2, 27), 1, 'Pix - Enviado', 'BR', Decimal('260.84'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('71762d1b89c523bd8d2f018c5a0ba7041206ecc5709bceabfe0146e20b726e6c', datetime.date(2024, 12, 5), 1, 'Pix - Enviado - 05/12 14:32 Cleiton Brito', 'BR', Decimal('60.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('718319271be9be4074e0603f0a6907f7f19623e164eb2c235ef5bb8fe655b3eb', datetime.date(2024, 2, 24), 2, 'GIFT BOX BRASILIA', 'BR', Decimal('85.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7184f67b31ef393b412ab9099886eaa8cd652ed771bc72ccc750deec4a51addf', datetime.date(2024, 12, 19), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('101.96'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7188e9c14d1df302415f6ca9c340cb3c1c2e3d20dc9ffc6f80b40769d398e3d9', datetime.date(2024, 3, 14), 2, 'EBN*XSOLLA CURITIBA', 'BR', Decimal('27.09'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('71a6ecfdab9effc91a90aece2e8dd85e13ddf34a6a7aa0ccc008fc6e0795e7a3', datetime.date(2024, 11, 5), 1, 'Pix - Enviado - 05/11 15:44 Centro Hiperbarico De Bras', 'BR', Decimal('450.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('71ad07c89fd985a499a74e07e035b4b3af159ffe93e0bfb96a169352497ead36', datetime.date(2024, 5, 24), 2, 'IFD*FERMENTO COMERCIO DBRASILIA', 'BR', Decimal('26.18'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('71b0cbcfa129a9cf4ed85be521fea1ff4ec6e3896132a4e1e3b7e44e39845b78', datetime.date(2024, 6, 29), 2, 'PAG*PauloRicardo BRASILIA', 'BR', Decimal('10.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('71d792d6058482f40c4827cbc16367c391e1003565acf89afb4dc76951fc41c2', datetime.date(2024, 2, 15), 2, 'MERCADOLIVRE*UAICOMERCIOSASCO', 'BR', Decimal('138.46'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('71e462db1345345e0efaf197a035ebaf30409ef400f88557b04862b8b626b7ad', datetime.date(2024, 6, 28), 1, 'Remuneração sobre ações', 'BR', None, Decimal('1.04'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('71e51fb24edad4f49264f36079e751d46cb43aa64d6b4b6933a7c0f42a4123f7', datetime.date(2024, 6, 25), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('17714.66'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('71eb46ca9f5a75db54b9c7981dfb38f68728b7fecb6e562fa944263e67585071', datetime.date(2024, 3, 4), 1, 'Pix - Enviado', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('71edfe6b96c5b7ea2b94bdea0d903c759dc4fbd4c8c15886e79f77755b15998c', datetime.date(2024, 9, 5), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('71f352b32ae431ecf6b10cd6209f777416afe3c6c0637b9d7703ee9e484a45cc', datetime.date(2024, 5, 10), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('721512c9fd4853b356462ed3eecc478e4a9a6f550222d83924c5dd19dacfd6b7', datetime.date(2024, 5, 19), 2, 'CASA DO PAO DE QUEIJO BRASILIA', 'BR', Decimal('45.10'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('722f11aa11e36718e73051edc1b2ae938fb60f1473b077b17a53e6cedad78d52', datetime.date(2024, 8, 16), 2, 'LISTO *CLINICAESTETIC BRASILIA', 'BR', Decimal('1330.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('727b3cf38d3219ef7de558c55cdbaf24fb3120976bcf37dfbc92c828f8751e3f', datetime.date(2024, 2, 20), 2, 'FRANPESO GAS BRASILIA', 'BR', Decimal('130.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('72de72371bf5cec0926169141cf96294cc6e1320ae2853b215ad934b41caafdc', datetime.date(2024, 4, 18), 2, 'MG LAVA JATO BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('734aa2e1d6f2044efcb8823b3b80270e22200cb0bead1ea36ecece61d069e1d5', datetime.date(2024, 9, 17), 2, 'HAPPY HARRY 201 SUL BRASILIA', 'BR', Decimal('19.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7385ef94344aaf99153d19c1e20467a8b4f6615105f386e59decd23086defcfd', datetime.date(2024, 4, 30), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7386aba9c5fd5159f48ef6a34928256e2b51c407e0d6a43f6b660cf0d47ccf25', datetime.date(2024, 5, 28), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.97'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('73926bb07ebc824c8985bccd0a8a68ee578bb4ac8492af67f96019bf7e1af9f0', datetime.date(2024, 8, 6), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('6.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('73ac088de1fa81667d3f62b9c5558cc629078d2a9f18e2a52806520fac8ada32', datetime.date(2024, 4, 2), 2, 'MERCADOLIVRE*BRASIL OSASCO', 'BR', Decimal('58.57'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('73f6cd3d89b8776045fb882e7ab768ee6f211de4cb86bc1185b97138c7f006fb', datetime.date(2024, 7, 19), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('444.27'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('74003be16d3217d8e3fcaae8cdca488e74401cc5f2b2ba343dc8d0c17c7ea856', datetime.date(2024, 11, 27), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('74059b1c1571f4486a28b8addd02ad1683c9b9b1861099082a4f02d80290ad3b', datetime.date(2024, 10, 10), 2, 'LA BOULANGERIE BRASILIA', 'BR', Decimal('143.22'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7406ada2e6cc4c3f2b1aac23626688dc20a191a0f09fbeb2ff1f3158d16e15ce', datetime.date(2024, 5, 17), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('41.41'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('740bec05310ff4c78ac93c4528e0843f06122b2291dc557b26f932ad5280a300', datetime.date(2024, 12, 19), 2, 'FolhaDeSPaulo Sao Paulo', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('74204b5a11628aa8eeb37f7488bbccde5e3629ac40e724b49e2410c56d556e70', datetime.date(2024, 11, 7), 1, 'Pix - Enviado - 07/11 11:51 Loterias Caixa', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('7432e002a20b5b4abdb4497a66fed568aadeda8da2b48e7f8fb4f877b0af6e03', datetime.date(2024, 11, 12), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('40.48'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('74347a4ff2caf0a4aabcdc137abc34ca49a351ca1ff7c887c279e5445b5bdfec', datetime.date(2024, 12, 6), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('1.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('7445da14ceabf2d39e9ce46c47c88a11156697e2212b5f413481b6caf0baf961', datetime.date(2024, 11, 12), 2, 'CARREFOUR BAIRRO - DF BRASILIA', 'BR', Decimal('453.12'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('744cbf71ba8c2082df1f0263ce7db826d9931b35725b7360dc3ecd3a47f18810', datetime.date(2024, 1, 8), 2, 'PAG*BrendaRafaelaDe LUIS CORREIA', 'BR', Decimal('46.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('745be250b47219b830e20de2ea32d52867b8919594c10e6e1d0117bf5ebdf732', datetime.date(2024, 11, 14), 2, 'JI BRASILIA BAR E REST BRASILIA', 'BR', Decimal('184.52'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('7485550e7dd100057123157a208a25faee7d16ad65267c5ce304b4b0f46c595c', datetime.date(2024, 1, 26), 2, 'VISAO INSTITU PARC 02/05 BRASILIA', 'BR', Decimal('200.00'), Decimal('0.00'), 2, 2, 5, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('74974d7a3db81fd603da53222613337364156d3f71f62126671c07d48b169e00', datetime.date(2024, 5, 11), 2, '49.204.317 MISSIVALDO BRASILIA', 'BR', Decimal('12.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('74b40e8c2c4426f0fcaddeb009ecc2e7d37e432911d1850d1b7c4854ced6267e', datetime.date(2024, 5, 14), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.93'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('74c9972a3f6e7bd918e32fbf07484750fecea80e80d455aa0d3ab4bc739bbed3', datetime.date(2024, 6, 13), 2, 'MERCADOLIVRE*4PRODUTOS ITU', 'BR', Decimal('48.67'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('74cb9a7d84115ec361d9210f66a29b78f0303d55f674814c454f0fc78cb1a609', datetime.date(2023, 12, 26), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.96'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('74f0d69ff2b51e66ea26d923c8949df1423a76a148fd62180c8ae0fde5dd0cf2', datetime.date(2024, 8, 21), 2, 'TRACKEFIELD BRASILIA', 'BR', Decimal('1259.20'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('74f1d1059c9da340ea1f058b262cb10f3b097a35ae4ad918fa5b5d16d7fdb4c5', datetime.date(2024, 10, 12), 2, 'TROPKANA AGUAS CLARAS BRASILIA', 'BR', Decimal('274.70'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7555ab5e737ad321fd7ef39c683688117590834eb0fdaefcea67d5384db46e84', datetime.date(2024, 8, 20), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('11634.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('755fcdf047cd003e8cd68851d8da4e35881725226a38b9599c6e51cf9d17de8d', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 10/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 10, 12, None, datetime.datetime(2024, 10, 23, 12, 52, 53), None, None, None, None, None, None, None, None, None)\n", |
|
"('7562fb7e0428043b254b7f620b35baec37f4502400d3195553818681273e50d4', datetime.date(2024, 1, 19), 2, 'ifood *IFD*IFOODCOM Vila Yara Osa', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('75c452df316d1c4e2a1a1a16f76fc5ea2fb2a95f77f13d67e949c1d6b03fd77b', datetime.date(2024, 9, 14), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('29.71'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('75c8ae045338550204025b3becd757546606c83ed51074155a54d759f80491f4', datetime.date(2024, 9, 6), 2, 'BSB GRILL 304 N BRASILIA', 'BR', Decimal('128.60'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('75c8ae21cc58f2b7da2fd2ed23a6bf84d5d6d3f69646bc89bb0805cd8ab0770e', datetime.date(2024, 8, 10), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('406.30'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('75ef65163c4aa8346139b17e7d607bede76e7bd85d75a265becff479d8028d85', datetime.date(2024, 12, 4), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('761b479ce7f80ca003b847c2d168aa6c0c23e7fdf20fa60481dbb7407c83e2ff', datetime.date(2024, 2, 13), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('43.69'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('764f909046223a83ea7ecce095b758d691e0b464f940b3e7658541869d06d900', datetime.date(2024, 2, 24), 2, 'STORE PIER COMERCIO DE BRASILIA', 'BR', Decimal('119.98'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7697444133514b975ea3451125a11213bb2b491c4f48e2627eb508e2ed759483', datetime.date(2024, 3, 19), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('2.09'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('76a874222e4c164f036737258209e446985df9ec011cb8d17f1383f21428970f', datetime.date(2024, 4, 21), 2, 'IFD*FERNANDES COFFEE CBRASILIA', 'BR', Decimal('102.64'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('76aa9299c0e2dc552d4000a02205719081a575c3386f900cd24d6a85366f60eb', datetime.date(2024, 1, 2), 1, 'Pix - Recebido', 'BR', None, Decimal('750.00'), 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('76dbc6a661dde44f415ea0cc065194d958adc97d46de4a6e50b9c1684b5eacc3', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 04/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 4, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('76ecbdb594d50e13886c09c056fcbe91d6756432890d4da4a0239950a3accb52', datetime.date(2024, 4, 30), 1, 'Saldo Anterior', 'BR', None, Decimal('26239.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('771e19cdd98cf7ac24dd7973bab8b660c1b751b825a07648f478a0913f4515b5', datetime.date(2024, 3, 3), 2, 'IFD*MULT COMERCIO DE PRBRASILIA', 'BR', Decimal('202.69'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7732224223d9033f82692db29da89b80f12c30c17e9628f08656d21076d905a1', datetime.date(2023, 12, 28), 2, 'Amazon Digital BR SAO PAULO', 'BR', Decimal('17.45'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('774121c83195f835cc7b12181f8964d38b85501ab10d5d687854a80c81973b69', datetime.date(2024, 7, 15), 2, 'SALTO CORUMBA CORUMBA DE GO', 'BR', Decimal('163.85'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('7766c8c2840b4773472283a7195d195f8ac968cc9e44980958081f9e86fcded2', datetime.date(2024, 8, 9), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('777f6cacd3e0c5730814f8de70277065e15f8663820323332f3448469b6a65b1', datetime.date(2024, 10, 10), 2, 'RaimundoNonato BRASILIA', 'BR', Decimal('40.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('77899760d65c4ac306e5f8ff15cb6594c6458379e09a31b90e67c3c5bd403240', datetime.date(2024, 8, 24), 2, 'GEORGE ROBERTO DE FRA BRASILIA', 'BR', Decimal('238.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('779e1ba8fbae91200a227ed391272992a61a48cdf73899b5c7bbbfd209097f6b', datetime.date(2024, 3, 7), 2, 'MR. JOHN BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('77a2927a1a295b13bd7c2989ce6511f3a1777c17690894ba0b9ee1da482909e7', datetime.date(2024, 3, 11), 1, 'Pix - Enviado', 'BR', Decimal('1230.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('77b4d221a44a747c167eb1d759ea4e9838bbdfe9d45af665126ebeeaa79f6909', datetime.date(2024, 12, 4), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('65.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('77db354caff0f095eb56eb2af293ef4f32034723be357f3cea588452f9783a10', datetime.date(2024, 4, 3), 1, 'Pix - Enviado', 'BR', Decimal('1686.18'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('781c7f15b1b9d903d830856974bf2d080465807752e62b13b6a47616da89b63e', datetime.date(2024, 1, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('6229.94'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('781e4277cb511914927db1014e0f0d3a550eccf7f433dd3959adef288d3f59c2', datetime.date(2024, 2, 1), 2, 'RESTAURANTE DA JUSTICA RIO BRANCO', 'BR', Decimal('42.05'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('781e8541d94ae9737172730ea00d303503738770be7879f41d6761b1c35165d3', datetime.date(2024, 10, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('18020.02'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7832af8bdeb40ef502b190b5198d2b34c3588f4530f51fedc5afad552f5d4d86', datetime.date(2024, 2, 19), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('783339cbe1ff9aee48e0915f79d14f97b82b8c0b1170cb689e7b05014f3212b6', datetime.date(2023, 12, 29), 2, 'PAG*AutoPostoSanta FLORES DE GOI', 'BR', Decimal('75.05'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('78496e1f400c157ef215e32e0fbdb14ddfadd69c47afc00edfebfa71677bb7e8', datetime.date(2024, 3, 22), 2, 'SNOW PARC 01/02 BELO HORIZON', 'BR', Decimal('2466.69'), Decimal('0.00'), 1, 1, 2, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('78544cad4df57209d05a3606990c99644048d7017d4086f15b5622d8bc1fa29b', datetime.date(2024, 11, 25), 2, 'Daniel Rodrigues Perei Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('7867ca336ba5abfd511aa20d16016c9f69248efded97e71966173267b600598d', datetime.date(2024, 5, 16), 1, 'Pix - Enviado - 16/05 22:18 Juliana Nonaka Aravechia C', 'BR', Decimal('76.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('786a92b23da41bc97cfceec304babf8371a67ffb6c64330034fe8c1de56ca6bb', datetime.date(2024, 4, 25), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('78ad451ed9be09e47535c63956c297ee0c628524202bbae17415b5b347681597', datetime.date(2024, 1, 16), 1, 'Pix - Enviado', 'BR', Decimal('26.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('78ba54b4a7dc5dd8ca442ccc16b81672b70ab834a1b861487162ec755d6f6019', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 14:10 55384846100 MARIA APARECID', 'BR', None, Decimal('65.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('78bba209255dbf393fc373d4190bd0c6b0786728afa273713cd47096dd3fd94b', datetime.date(2024, 8, 28), 2, 'Frigideira BRASILIA', 'BR', Decimal('18.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('78c1fb735e24f323bb5e08f28b3b0df4d11ea0588c4dbf99717d77e487c6f751', datetime.date(2024, 5, 29), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('78c4a83dab9aad32c00fe963155c59779b2f3f0b3a8763c3b561b249e9062922', datetime.date(2024, 10, 2), 2, 'UBER * EATS PENDING Sao Paulo', 'BR', Decimal('354.22'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('78dfdd77470a24cb1e313112a10a0482930597b135946f74c2c57c523bcf38dd', datetime.date(2024, 10, 23), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.02'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7903f9fb000342a06a06edba659b4bcf7ff47ea049858a9e87e8d24fca5df3c7', datetime.date(2024, 3, 20), 1, 'Recebimento de Proventos', 'BR', None, Decimal('11713.08'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('790690a308c29e3d47a44110f2a17e1831123de9b47ad643f613c7fdff93b73d', datetime.date(2024, 4, 9), 2, 'MERCADOLIVRE*SABORESDAMOSASCO', 'BR', Decimal('109.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('7912dd390550152e7a3ee6b05ae9bdb27d7a6f67366e26654d3a6f5236937f2b', datetime.date(2024, 8, 14), 2, 'BrasilC*SHOPPING ENXOV Brasilia', 'BR', Decimal('319.96'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('79163d01686424d6d56fe3520311eea5042ec1e3d2cc90b25bd98987e83c2572', datetime.date(2024, 12, 6), 2, 'Antonio Fabio Da Silva Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('79199ab201fa70ff504567fefa7d3c8ca1a834bb9ae7897e77f29abe862c8f5c', datetime.date(2024, 10, 7), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7951d443c90d4dc4cc1f91587260f67bf086b2213183757120ecf62b9a2e5a01', datetime.date(2024, 5, 27), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('79645493d0e67853d42aab32a6e661e1895aa0fec8fdae482d19134e9dfcf96e', datetime.date(2024, 12, 19), 2, 'AMAZON MARKETPLACE SAO PAULO', 'BR', Decimal('102.41'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('79956231e74a249bb2b3be64fa223b9bbe7f9cca7430c4e60225fd983cef11cb', datetime.date(2024, 2, 17), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('119.80'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('79b0a6fe9bce36f7f986298b1ed6b0bc4aaa55f138e6ea75deea0fc6d84839c8', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 06/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 6, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('79d0085d619f5e539dc8d7a3eb6c06f84b366cc1718fd74a4376880188c88f9c', datetime.date(2024, 6, 7), 1, 'Pix - Enviado - 07/06 09:46 Helen Bruna Nascimento Far', 'BR', Decimal('1000.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('79d382c5db7e23246ebd1b0b981a1b2638f835a45155e49f8b50f6920a5335b6', datetime.date(2024, 7, 9), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('79d65c69261200bf6805d1bc602a83476ff7f05c5c71922b8cee6beb864f59c6', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 02/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 2, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('79f0292f0b485b76f76c7276702c64d1fa098885b3377269b5a9e5a3a79963f6', datetime.date(2024, 6, 17), 1, 'Pix - Enviado - 17/06 09:50 Jose Reinaldo Da Silva', 'BR', Decimal('149.50'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('79f718c660aedc2b547d125afc20fa32cf25b61e8816aa545215f9244b1a3efe', datetime.date(2024, 2, 17), 2, 'CONSTANCE BRASILIA', 'BR', Decimal('129.99'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a02297f44d2dc539d98adbeced160013340e9e25150e660a692e600d7957b74', datetime.date(2024, 2, 6), 1, 'Pix - Enviado', 'BR', Decimal('49.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a06c24e7679641884bb578dd17b0696bceff8801c94e241df5503b113ef72ca', datetime.date(2024, 5, 27), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('17876.15'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a14f5877906ed997256e08264eda6bad71fb74194391a3efa993f33c07eda12', datetime.date(2024, 9, 19), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('6.56'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a1a90a37199158b019e484efdc718a687028d4da62e027d577f57da3f270d75', datetime.date(2024, 9, 5), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('18.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a1c30bf67c6d0b8f89be1faf52664eaabd5c161437d8ba39f619d1e60bd6459', datetime.date(2023, 12, 22), 2, 'T.T. BURGUER BRASILIA', 'BR', Decimal('36.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a3c56d81a2858c16051ddd42463a9372b2139445c6b037ce5fb278726491281', datetime.date(2024, 10, 22), 2, 'XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a4c8b9af0bf0e95a90d22a7f3666320b2787359fb349adb528823b093f0ac66', datetime.date(2024, 11, 15), 2, 'UBER* ONE OSASCO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('7a981f4f943a19e744302f2f790299119c720227f83f1b05d946e64c5b5bb428', datetime.date(2024, 7, 22), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('204.99'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('7aadae423983e905cb394b0a0e83c8521821f4f23a4d107121828bc93a3d8bdd', datetime.date(2024, 4, 7), 2, 'ifood *IFD*SN COMERC Vila Yara Osa', 'BR', Decimal('152.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ac74c7290422ab7e41d3cff4e1c41427c743454a8ba853e82a934d7ecb8d0c2', datetime.date(2024, 2, 8), 2, 'BOA PRACA BSB BRASILIA', 'BR', Decimal('282.48'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('7af839ddbabe90918a0485ba8bbac35380b4f2f9dd483eb876a51e3e76e8101e', datetime.date(2024, 2, 18), 2, 'Amazon Music SAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7b0f511a1aeeb6c363de56835d7447ab761d8414339101a67443a6cb59064462', datetime.date(2024, 5, 2), 1, 'Pix - Agendamento - 02/05 05:31 Neuropsi Psicologia Basead', 'BR', Decimal('1400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('7b12b725875cf943c4623168c26f416c34ea6dd72b4466a0788a4f04e7c96126', datetime.date(2024, 2, 13), 2, 'AEROMIX SAO PAULO', 'BR', Decimal('52.59'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7b313dd11ee9d738242dc8d8848dba1c868738f593970645ef6d51e6945544e9', datetime.date(2024, 2, 15), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.99'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7b3c834427e635b9c1fd98a80e2de97383383a3b5f42fb60117810143e702310', datetime.date(2024, 7, 3), 1, 'Adiantamento', 'BR', None, Decimal('6406.37'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7b7666c51e25f15d02224b22ab08e6fff90eca0240372c55debd6009c5e3f807', datetime.date(2024, 9, 12), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('7.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ba4cfea1c5909715c15a7bc0c7759a7756b76a0bcc5710bb15a43c3c1e7315a', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 12/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 12, 12, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 58, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ba52bd2e95065313c27e058f243dd4aa0fb58f0a7b3cad0952a59c8ffa7450e', datetime.date(2024, 11, 8), 2, 'Amazon Prime Aluguel SAO PAULO', 'BR', Decimal('6.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7bac77ef22a591a5eff8975a0527a7651b2b97b70cb9952c114dccb304c1debf', datetime.date(2024, 10, 11), 1, 'Taxa Compra/Venda Ações', 'BR', Decimal('1.25'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7bc5df7714bcebca5cc14ceb466eb1245cb7fc86d17745b01fd581512b24a361', datetime.date(2024, 7, 14), 2, 'MERCADOLIVRE*CHINALINK OSASCO', 'BR', Decimal('445.89'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('7bdc2b9864fd9700a8ae37e059fa2de6a1a041a121e285c01c298d406799370d', datetime.date(2024, 8, 25), 2, 'JERONIMO FLAMBOYANT BG GOIANIA', 'BR', Decimal('98.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('7c036d805b710a8e0cd569d70d3cc431e8e64ea09f7df5ef12fa2ba8e5326f1a', datetime.date(2024, 6, 30), 2, 'IFD*CR EXPRESS Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('7c19e4fb4c5da9823853aa64a382dcb6ba02daffe6408803d60edfd007e341b0', datetime.date(2024, 11, 19), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('444.27'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('7c39af43520c51e9d252ab014d659fa35d1d454332deb50d3a08e4bfd25009db', datetime.date(2024, 10, 12), 2, 'Bacio di Latte-LJ0027 Brasilia', 'BR', Decimal('79.80'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7c5dde8dd489787d9bf764fc7adb1e5409e6d67f42a36e71845c47db0a52ccdc', datetime.date(2024, 1, 7), 2, 'BBSEGUROS*SEGURO RESIDESAO PAULO', 'BR', Decimal('1150.70'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('7c6bf6883660155b0658d2a58d63bb61588272375fe0dd293dbf3a6f148d2cee', datetime.date(2024, 10, 9), 1, 'BB RF Ref DI Mega', 'BR', Decimal('20000.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ca26676b646686d94f36093ecdeec3869790b3aed274c98eb1c0a317f3a1872', datetime.date(2024, 9, 6), 2, 'PP *DL FERREIRA Sao Paulo', 'BR', Decimal('184.80'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('7cb81a57abbf650ba90cf0eb3e66f09b44d13dafaf5e99a8b6f9618c3abee15b', datetime.date(2024, 6, 9), 2, 'IFD*SCORPIONS EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('7cca2b51b14482afa309b36176e12fd5387574d1500f8400b283961e2fb7a333', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 06/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 6, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('7d07fffc9b0edd77ab53811cb9ebe3f8814815e48dccc53ab2fb40c95183212f', datetime.date(2024, 9, 5), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('7231.37'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7d34e5557aa22ff60c9a06660f61306dbc0e17388601de209e949978e212e977', datetime.date(2024, 8, 30), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.03'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7d3d5add45fe7509f48e316050964e7ce76bd1480d4d7ba76e7f7a5d5d3be1c0', datetime.date(2024, 1, 29), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('7d52cc2260670612a2f9725aa28cba89a1e2cb760a563939c2ab5d94bee7ad11', datetime.date(2024, 7, 20), 2, 'IFD*JL COMERCIO VAREJISBRASILIA', 'BR', Decimal('134.70'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('7d6dce684caeb647465deff19ec560fc937f3348b9a07938c00b6160dfefe52e', datetime.date(2024, 10, 25), 2, 'IFD*LA GRECIA PIZZARIA BRASILIA', 'BR', Decimal('234.79'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7d77cb32c998478bb0dd052aefbf605a2e676826fdc578c5f32c9dc80e6ecc0f', datetime.date(2024, 2, 17), 2, 'ifood *IFD*O PUDIM P Vila Yara Osa', 'BR', Decimal('84.90'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7da65976c96633c512bf2815011dbaf5efcd3d243800ae6f5cc8c0256a9a801d', datetime.date(2024, 5, 1), 2, 'MERCADOLIVRE*DONKAIMPOROSASCO', 'BR', Decimal('2563.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7dc09e761d7fdf8b5fbaae985a4cfc75b0e0b9bab196a00591cee3d248fd8c33', datetime.date(2024, 4, 25), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('32.10'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ddac4b0ba136d684a3991c30fc6c564663e524191723fb2e9178216d396fa41', datetime.date(2024, 1, 4), 2, 'MODAB IRATI', 'BR', Decimal('449.10'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ddf49c5962863439a6403dcf1998e9abe04b2347e1c1e9565ba4d08f9ff051f', datetime.date(2024, 1, 25), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('161.99'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e09e722d13153f73b29117cd29d5f7391edc524ba848156cbc5b10e5a6a31b3', datetime.date(2024, 1, 26), 2, 'VISAO INSTITU PARC 05/05 BRASILIA', 'BR', Decimal('200.00'), Decimal('0.00'), 2, 5, 5, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e241d3118a4ac7f47b4ddb9892c224e3649b00f9c800004b758952d57de3ad2', datetime.date(2024, 9, 12), 1, 'Pix - Enviado - 12/09 11:39 Jose Roberto Medeiros Juni', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e2a56711b4ce0ae73b78fb63b74159f5511686658776fc9cfcca898c5db9224', datetime.date(2024, 10, 30), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('29.77'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e6f76bfbe846b8fc24e314472fde356afea4d7514067a13769a896832ca5211', datetime.date(2024, 9, 3), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('174.68'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e787756476c45f48926b0bbec57506b1af6485520e2a1e88a4a1ee3091685e8', datetime.date(2024, 6, 10), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('6.61'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e84c1dd37f63e25820d8d7139856d960e764661e359a7138085d1a5f136a743', datetime.date(2024, 1, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('9346.27'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e8b74e2ebdb568f9ddfd044fb814baab14ef20cd06c114d3cc26c2b451c93c6', datetime.date(2024, 12, 11), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('86.25'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7e9cd79b161d1edaaa26fe3976fbd7d30203317fc97726d0673a92aa5937f958', datetime.date(2024, 4, 15), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('7efd3ed5e1a02d2d959101a08dbce9991c876de23a30d703ad257689a4ab0504', datetime.date(2024, 10, 28), 1, 'Pix - Enviado - 28/10 21:03 Francisco Emidio Soares', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('7f6291713a706442c679318f1bbd9fb0d67f0e5d8d1865e1031d671c137f955c', datetime.date(2024, 8, 8), 2, 'FranciscoDeAssis BRASILIA', 'BR', Decimal('36.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('7f683713a71f6507659e84a8f56d3ff32ad2c8cfa1c4281cf76c0ace88f1a4ad', datetime.date(2024, 8, 16), 2, 'FRAN S CAFE BRASILIA', 'BR', Decimal('20.40'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('7fb6cdda59b902f7027ad7082c5270a1f83188a10c288f66e3acf7f396dc51bb', datetime.date(2024, 6, 15), 2, 'PAG*Fazenda BRASILIA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('7fd429094286259a0be07232c496e21d45ebc05c119eb1775a0021db147d14e1', datetime.date(2024, 2, 2), 2, 'HOTEIS F. TELLES NETTO RIO BRANCO', 'BR', Decimal('205.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('7fed95eef2cc1d4f0e1265676b4116e4d0a2e7c0d02972f16c32f2f454df4c89', datetime.date(2024, 12, 18), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('7ff7b34d17c86438267a6b42f3f53fb927a33efbe11ddc12f2d52168282966be', datetime.date(2024, 6, 26), 2, 'MERCADOLIVRE*LHETASHOP OSASCO', 'BR', Decimal('106.44'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('803be82fb9740b953cf87ea57002379cb84784bae8fae4d1e7abaf32e100080f', datetime.date(2024, 12, 6), 2, 'STAR TECH BRASILIA', 'BR', Decimal('1178.40'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('8080598bf7d632a48bc4657cf7c6325c9c2a9ef82122a354cda0c04542d1f248', datetime.date(2024, 10, 12), 2, 'REDE DOS COSMETICOS BRASILIA', 'BR', Decimal('74.56'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('80b921fb82f2b521f7447c31d7fc8a37ac5ac5124c1eb2ac12cc091e147deac7', datetime.date(2024, 4, 28), 2, 'IFD*BSQUARE PIZZA BURGEBRASILIA', 'BR', Decimal('161.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('80e0542c1b4e02ffac6244d40c63e104d6e89d8cbbcad53c0c15fe5d788080a5', datetime.date(2024, 5, 22), 1, 'Pix - Enviado - 22/05 12:02 Nuvem Shop', 'BR', Decimal('89.32'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('814d09469b1fdbf6427974031c6a121c09ed1d0f80fb1c39966e23c180a730fb', datetime.date(2023, 12, 13), 2, 'PB*Coffee Mais Piumhi', 'BR', Decimal('128.49'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('8153be01adbb7594d775af473feccea35e14c1b7ba8b21b076ff3cee9c6a2fda', datetime.date(2024, 3, 12), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('81aed6b957a1ae65e31e1a3a7781ac2b50978382972e8d2879f7909f4ecbf06a', datetime.date(2024, 8, 8), 2, 'CASCOL COMBUSTIVEIS BRASILIA', 'BR', Decimal('239.37'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('820a723b52f4df5879196cc2f99e277559febbf636e5f10a6402b4dd6ebc8cca', datetime.date(2024, 1, 3), 1, 'Compra com Cartão', 'BR', Decimal('15.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('823cd60c126fd95e28bf122a409226ba5e7ece8290e0853cfd0c33b202597b56', datetime.date(2024, 1, 16), 2, 'BIOEXATA FARMACIA BRASILIA', 'BR', Decimal('275.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('82b2323485781a60895c6360d4bd537e78153905a345d4aa8f8658a64d2cab8e', datetime.date(2024, 10, 20), 2, 'Barespetinho CIDADE OCIDEN', 'BR', Decimal('45.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('82bc3f1dde97c808722fcdda6f5f350367742c28aebeb910f97af924d95cb5de', datetime.date(2024, 4, 18), 2, 'RESTAURANTE NIPPON GOU BRASILIA', 'BR', Decimal('401.06'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('82c2aa96979bd6ddfc91543eb39e29faa3296f7c62960bfb93d23dee87db69a2', datetime.date(2024, 12, 11), 2, 'TOP Sao Paulo', 'BR', Decimal('20.00'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('82e87ca8409235f42a09fe983a34c7212453ac620c5afcd396cb55d638e8bc35', datetime.date(2024, 4, 11), 1, 'Pix - Enviado', 'BR', Decimal('13.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('82eecab3157095ee438eb9da02fd69ad33a2697e7c84755a631dc13bffaf62be', datetime.date(2024, 2, 18), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('21.75'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('82f2be02e2b7bff05eef7c9bc77437ed5ce327294af4c8785df5e98d0919d49e', datetime.date(2024, 11, 28), 2, 'ALMERIA FILIAL BRASILIA', 'BR', Decimal('136.64'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('833819956fa3b858cd0e1fbea16744e93e37de9a8743b98cea85499c1e7ede8d', datetime.date(2024, 8, 14), 2, 'IFD*Lucas Tomaz Da SilvOsasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('8346565cfe8101c278058b781e00ca063a352920cf8cdcbdb7e704670ad68498', datetime.date(2024, 10, 13), 2, 'CAMINITO PARRILLA BRASILIA', 'BR', Decimal('254.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('83571ac9cb6bdac795d3f442a703af5eac4a8305aebc78f8d40372e533557414', datetime.date(2024, 9, 17), 1, 'Pix - Recebido - 17/09 10:58 00026656655149 FLAVIA A S', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('835e4c0b1adb90219023dba4266eb17bad33f8b4076c32571c6fcfa9782b0880', datetime.date(2024, 3, 25), 1, 'Pagto cartão crédito', 'BR', Decimal('19249.92'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('836fc9f9b9e485aab1cec8cfc1abf844a73c4e5a9aa46cb5874d4bc6565ab7f6', datetime.date(2024, 9, 14), 2, 'OLINDA COMIDA NORDESTI BRASILIA', 'BR', Decimal('277.31'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('83cc5c49e5e7a52ec0d0c3d7e149a7557c4e68fbe14eb9e39a41225c746c4665', datetime.date(2024, 6, 23), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('135.62'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('83dd474b7d0df36baa7f3713d49df6167b7b5fea51f0bd57bcf17117e25c5a2f', datetime.date(2024, 4, 14), 2, '0214 - MAC BRASILIA PA BRASILIA', 'BR', Decimal('190.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('841b0136de145934bad1497ff7b2106627575307957860bcce49d9d009076030', datetime.date(2024, 6, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('844654126e5a27690e546417cbec1caeb1ed90df6b61ff6efb7525207906b9cd', datetime.date(2024, 12, 4), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('18.80'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('844eaccee3e1e155d4ecea14b0279b3bbef5874de0c6fa9cc56eabc2b81222b7', datetime.date(2023, 12, 26), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.97'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('84592ac5492881307d7824ae86f6a291abd07185be6116e13a376fc7db72eda3', datetime.date(2024, 4, 2), 1, 'Pix - Enviado', 'BR', Decimal('700.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('84b0e71691f422618c14bfab09a3b2da14832b738cdb8c708188961fa1a822e9', datetime.date(2024, 8, 9), 2, 'SUPERAUTOR C*Supe NITEROI', 'BR', Decimal('247.86'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('84d469b145deefd4b7a3abd2d91f50530e214feed5ba6a801a0ad81e71a46679', datetime.date(2024, 11, 26), 1, 'Pix - Enviado - 26/11 15:50 Centro Hiperbarico De Bras', 'BR', Decimal('450.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('84eaf25ef9f5763a36f5dad31e2cf0e4e28c76535e0744a37ed07019f451f1a8', datetime.date(2024, 9, 6), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('8.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('85633bc29bdd67834561a2381a853fa214b4b84edcb9e8c4f1052caa36aa3bea', datetime.date(2024, 6, 11), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.98'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('857f753c4239e9efef4b51fbf276f99a592220e3b3820808e0f921e8f8fe268e', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 10/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 10, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 6), None, None, None, None, None, None, None, None, None)\n", |
|
"('85853f712642967689dd4cda4d4b88036533263b2a4609b568b534e57232401e', datetime.date(2024, 9, 29), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('15.67'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('8588ea4383c309a35fc7c719f803d00616d5f90ba4f9d1ba884cf7c5b25cebdc', datetime.date(2024, 2, 29), 1, 'Pagamento de Boleto', 'BR', Decimal('1292.10'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('85bb6b8d4618759514d2487e6adc13efc686868930e560fd221def5cf1f59054', datetime.date(2024, 3, 8), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('178.59'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('85c0e5e3ec14a6920760a001e0b798037e8778422db09fc7fc33963b5a313992', datetime.date(2024, 7, 12), 2, 'PASTELARIA VICOSA IV BRASILIA', 'BR', Decimal('19.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('85ca3f3683caeaf2fc5b5479f0867b317f58cf909a4fa03db80eb13615d6dd43', datetime.date(2024, 10, 14), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('95.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('85cde978d29fdd282d6a3b203abb141c186a64c52f225a2d1c80447cc3bdd5ae', datetime.date(2024, 9, 3), 1, 'Pix - Enviado - 03/09 09:38 Anizia Maria Pinheiro De A', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('86109e9642765e0186823d1122d70257c8cc1201b7c430e159624f9a310b9da6', datetime.date(2024, 8, 20), 2, 'IFD*O PUDIM PERFEITO FABRASILIA', 'BR', Decimal('89.90'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('862794a8a7be9c29bc3e96de10ea2f81fee3ca96f00588d0bed29b4ee6265037', datetime.date(2024, 4, 19), 2, 'PAG*FolhaDeSPaulo Sao Paulo', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('86363d490979a02bad1870e64ffc7c2d02b5916833a90ffb5fb4d1114ad5e05e', datetime.date(2024, 5, 6), 2, 'MERCADOLIVRE*NOSSALOJASOSASCO', 'BR', Decimal('167.77'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('86836817e6827a6db374eb3143c0800100a351a65fc76f4a9c69687a5e8615c4', datetime.date(2024, 3, 27), 2, 'CAFES PLURAIS TORRADOS BRASILIA', 'BR', Decimal('279.90'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('869264a99dc2e666292c76fc1f0ef7a081b09487923241684f62c940d1b53b80', datetime.date(2024, 8, 4), 2, 'IFD*SCORPIONS EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('86a18b4c87f7e0b763586520856da2b595579ae7c2b543450914af10782d7fc0', datetime.date(2024, 1, 4), 2, 'DR CAMARAO GASTROBAR PARNAIBA', 'BR', Decimal('179.28'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('86a5ad0b9fb3171a78e4552dc03302f9d8b891f01bec5635de5a022eae272ab2', datetime.date(2024, 12, 15), 2, 'ONI UNO BRASILIA', 'BR', Decimal('38.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('86b440cc8285ad98ec827140d3ae5de4b46187f03f82dfd96fedaea4251e3849', datetime.date(2024, 8, 30), 1, 'Ações - Proventos - Pag Dividendos BBAS3 30/08/2024', 'BR', None, Decimal('30.37'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('86c461d0ed74a7eea61e5748a8978b82a5bfabdf35d5ea687160563ac380d69f', datetime.date(2024, 10, 11), 1, 'Pix - Enviado - 11/10 06:20 Luciene De Souza Melo', 'BR', Decimal('320.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('871d0a61a023186b9fd8162da790bf2be9a575a63ae7a601d9eb406eff6d1f90', datetime.date(2024, 1, 14), 2, 'DEPOSITO DE BEBIDAS PI BRASILIA', 'BR', Decimal('52.50'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('8720cb5ef3603fb20d6d205707907a9e7366549e99ab25d81ef368b81b446b23', datetime.date(2024, 2, 21), 1, 'Recebimento de Proventos', 'BR', None, Decimal('210.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('872db267cb647781872e74fff5eb04878b6aba5245c9ec1936cec8816d7e0b61', datetime.date(2024, 5, 21), 2, 'PAG*FolhaDeSPaulo Sao Paulo', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('87330b079982f18e5407cf25768dcf0f9ffbc289a5ae34f8d42392516cd19f9e', datetime.date(2024, 8, 7), 2, 'PARENTELA PANIFICADORA BRASILIA', 'BR', Decimal('64.90'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('8745bec7ac53ff9602cddba5162b18729f96d7fc5fbcff6f1e68e0ff73945588', datetime.date(2024, 10, 4), 2, 'MAR BRASIL ALIMENTOS L SALVADOR', 'BR', Decimal('343.20'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('876eb8352c69376d2d549b3045c875c58b54147996b729c25e412d1ee058432a', datetime.date(2024, 2, 1), 2, 'LATAM SITE SAO PAULO', 'BR', Decimal('65.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('879fbdd7689b118405ed0d8f0fbe0abb0298e9041d737bce100de06aa0611424', datetime.date(2024, 1, 6), 2, 'MP *LORIVALSN OSASCO', 'BR', Decimal('46.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('87de70a56f44ec56eaa0fb859ff40754f570a000d3498a550c7ca399c956a71b', datetime.date(2024, 10, 10), 1, 'Pix - Enviado - 10/10 09:46 Francisco Emidio Soares', 'BR', Decimal('860.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('87e89c5c35e02a6b27c10d01b3cb5bb3bdf94b3321d6b512ad086f327da8c513', datetime.date(2024, 8, 26), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('19634.96'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('881f17306b8111fe06b78d3bb410af7aed9fa463f7f5410b7502f7d1448c3c2c', datetime.date(2024, 12, 17), 1, 'Pix - Recebido - 17/12 17:28 00055384846100 MARIA APARE', 'BR', None, Decimal('375.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('882783cf278bda165c483fbf11a68c5f009f3d7fc92cc07c22e9c0ccdf4ed5f6', datetime.date(2024, 6, 29), 2, 'FARMACIA DYNAMIS BRASILIA', 'BR', Decimal('179.50'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('882ce719ee0ed1265e114e0dcecac5189ee746d628fd7df351317393c856d755', datetime.date(2024, 2, 27), 2, 'DEPOSITO DE BEBIDAS PI BRASILIA', 'BR', Decimal('70.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('886d93cc0aec5990fac2ee9025fe5998c5d0b76302dd1e0dbec7a6c49633777e', datetime.date(2024, 2, 15), 1, 'BB RF Ref DI Mega', 'BR', None, Decimal('267.75'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('887ac5fbe87fb45b240a1d0a470d22a69aeed90bee7bf2c4b7bc3970d2ba8abc', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 23/11 13:47 Juliano Santos De Souza', 'BR', Decimal('1800.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('8895e75207c55ce3cfd96d72bbdfaaedccedf57511f55bfb744c58573cdd5915', datetime.date(2024, 3, 19), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('88a67dafcf1aa39dcb7438c70908b1ed4a44b04d6684e7b5ea55be8fde959ffa', datetime.date(2024, 3, 21), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.98'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('88ada2d0740682eadb110473e6d33518a8d33af5b492ae65d2ea52774c7dff23', datetime.date(2024, 7, 1), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('12.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('88c6bcc725c171ea83314beaa3f3f09a521a1d8465f42590c12c1adc157f5df0', datetime.date(2024, 2, 5), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.79'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('88ce8e0a27ac9df5c56b3b655fc05d92fdf6edf426b01a5cde7b3f50f86abf5b', datetime.date(2024, 8, 20), 2, 'DiogoLealPimenta BRASILIA', 'BR', Decimal('86.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('88f4750bb3b8782f049368b8d900efe0f96978508844bef01defb39c76a18eb5', datetime.date(2024, 10, 21), 1, 'Pix - Enviado - 21/10 11:24 Rafaelle Augusta Rodrigues', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8943e65036e0fea5a8854e3be55cafbc73aafc3671e8046a734240f6172f6bf0', datetime.date(2024, 3, 18), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('13.98'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('89525e628b2adcc15a0eb6e96c1259ea825095a4edd4504f16b83af2d68f89ab', datetime.date(2024, 9, 30), 2, 'PG *SALIENCIA BRASILIA', 'BR', Decimal('28.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('896d07981d212513fd78f939a6ee83901deb0ca9bdfb435485187b0156ee3f86', datetime.date(2024, 6, 14), 2, 'IFD*LA GRECIA PIZZARIA BRASILIA', 'BR', Decimal('221.79'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8982ab9fb7e0b409ba4b2f35e7dcf6be40456f50a20a909cab4c6edf9658ef58', datetime.date(2024, 3, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('89fa033b330469f4765328fdc1c0fdce5ebbc7174a1c5e6b3c04da0a014b01b8', datetime.date(2024, 2, 11), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('65.37'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('89fa6be7b48c01787c4c2bf9e63da56484f1b843be54cdaff1804d6681bd3807', datetime.date(2024, 11, 3), 2, 'DL*SHEINCOM SAO PAULO', 'BR', Decimal('220.19'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('8a1e70feb3ec9a4e93f714445e17fd1ff780eafbdd78c7cba53523b9faefe721', datetime.date(2024, 11, 15), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('109.76'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('8a60cc10332b396d501ecbcdcf73ed1d28c04447758a8571b03ada9c41e3ac9b', datetime.date(2024, 6, 13), 2, 'MERCADOLIVRE*4PRODUTOS SO PAULO', 'BR', Decimal('85.74'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8abcb6de7dd711b01ee7207ef63141050c7cf525ce128a3eb651ec2b63ade4ed', datetime.date(2024, 9, 8), 2, 'MICROSOFT *DEVELOPER MSBILL.INFO', 'WA', Decimal('48.20'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('8ad5504836fcad2a5f668fdebf4c3d11155f167dc8854195647a450e30024cd8', datetime.date(2024, 12, 2), 1, 'Pix - Enviado - 02/12 12:07 Neuropsi Psicologia Basead', 'BR', Decimal('1750.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8adbd5313448d4c1b1b5c037e022e41c94e3f0b5be3264fe0e1d9c55e5eb0ac9', datetime.date(2024, 5, 13), 2, 'IFD*ME COMERCIO DE ALIMBRASILIA', 'BR', Decimal('65.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('8add71f0cc4b0c771b0e8cf3034fa1be88b4579a4c63e4045eda3ee751e10c37', datetime.date(2024, 7, 18), 1, 'Pix - Enviado - 18/07 07:47 Denise Guedes Santiago', 'BR', Decimal('74.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8b1b160431ee017476da8037e0f81c54b27fa3c244395e65e376904c579d7f8e', datetime.date(2024, 11, 13), 2, 'IFD*LA GRECIA PIZZARIA BRASILIA', 'BR', Decimal('268.79'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('8b5ef9e656f2f3fa96773e7961248eb2d38a64a1266d616bf56af9274dafe45a', datetime.date(2024, 10, 17), 1, 'Pix - Enviado - 17/10 08:47 Au Au Que Visual Pet Shop', 'BR', Decimal('360.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8b7a6e1a7f82dfe842b835dea61c5b4ac36e9da25f4a928683bbf60d03dc6971', datetime.date(2024, 2, 20), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bacefe3911e7944306adb54a5e012fe8520d2deb39f753bd3b71e1d4794580b', datetime.date(2024, 6, 30), 2, 'DROGARIA DEDICAR F14 BRASILIA', 'BR', Decimal('2.50'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bba61c62c19301b198d167566abd237d3c72cc0de5678b299e36e8a1b5ce5c3', datetime.date(2024, 7, 6), 2, 'IFD*46.366.185 MARTINA BRASILIA', 'BR', Decimal('164.99'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bd106a30f2a10a3c9bdfcbf5863ba9bcbd6f93e68ff4cbb70a95159ffc05846', datetime.date(2024, 9, 27), 1, 'Ações - Proventos - Pag Jur Cap Pro BBAS3 27/09/2024', 'BR', None, Decimal('31.73'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bda33f84dba308df8addd3adb5d4023a8a6f5aa8fe13f366294563465a9f2dc', datetime.date(2024, 10, 13), 2, 'CAMINITO PARRILLA BRASILIA', 'BR', Decimal('25.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bdd40eea1a0edca3cb8064a85004e89a8eaa9051132c00cede4ff41a9b0c226', datetime.date(2024, 4, 2), 1, 'Pagamento de Boleto', 'BR', Decimal('1709.10'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('8be7e5d43b0f7dd9356d42094fd8698e29e911271220d8c0f95270634f748600', datetime.date(2024, 3, 24), 2, 'DL*SHEINCOM SAO PAULO', 'BR', Decimal('270.94'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('8beeee9664ac3111daab858dbd59577c79ba02729f17061dd3b6e63f0042885b', datetime.date(2024, 11, 24), 2, 'MP*MELIMAIS OSASCO', 'BR', Decimal('27.99'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('8befb7b5cececc36abbd5edf6aca5b7f3b097c81dc33d9ed53bc4a619e2a7cae', datetime.date(2024, 3, 26), 2, 'QUEST 01/02-SNOW BELO', 'BR', Decimal('-2466.69'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bfcc028beb7dfbb0c2ef3195ee950f2b551626f6d8b3a5deb6e820b74894bf7', datetime.date(2024, 5, 22), 2, 'PAG*XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('8bff1627b17b37ff2a9991783d539af23f6138971fc319da4baae4a492142985', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 08/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 8, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c09aa649c54a4c4271c570bad59e9a3072db0abb704ec8fe4d5bd320d9bf8bc', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 01/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 1, 12, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c1c8eaa7688ffd6586e963499f229cdd2712138b05db8d8c5004d3c8cd9eb46', datetime.date(2024, 9, 18), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c1d99bbe82048c54417ee6ab5741c77c0f07ecd6a7ab8dfbd97a3ef2053872a', datetime.date(2024, 1, 30), 1, 'Pagamento de Boleto', 'BR', Decimal('1314.71'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c1f26ef970a03d3c0721d7dd51b3c3660223e7caefc2e1ce242e6436b945398', datetime.date(2024, 3, 25), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c480a1b5d8282edba5d4e91c04a7daa587541405f0565f70618ea0b3b289853', datetime.date(2024, 2, 13), 2, 'PAG*Aslog BRASILIA', 'BR', Decimal('11.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c513e2f2dbc28e66eafda42607c1a059541db6f0cdae70e2f67f79c7aa42507', datetime.date(2024, 1, 16), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('1130.45'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c5e79d943bc2a8f559d8071c61dc642f2b9eb9f45ac1e76e09e59828b179506', datetime.date(2024, 11, 7), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('15.15'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c7f43f4425600540d72fbc5eca8c95371956fd390e506fa12e37384b410442f', datetime.date(2024, 7, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('8c931f9a931183b0abe9f5d50a0e1de0e1e040422ffc8dd59bb32b09e98c7817', datetime.date(2024, 5, 22), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.47'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('8ca429cbefeb282d84eaba4995495390b74f0838ef30fcd0b3e958e1b2a63380', datetime.date(2024, 1, 4), 2, 'BARRACA MAR E SOL LUIS CORREIA', 'BR', Decimal('195.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('8caf696f5b1b5f8c8f210cf402154146acde34ab4f69c2ba1a113bcf79ef7083', datetime.date(2023, 12, 29), 1, 'Saldo Anterior', 'BR', None, Decimal('13743.85'), 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('8cb46c1be093de404be56e7d00a0de3fff65bde44827ccecd62445b9c9b54516', datetime.date(2024, 4, 25), 1, 'Pix - Enviado', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('8cb7f3fb8886360b7ed96afe2b72803a35509e69b4a29d1944ab40752ee13f27', datetime.date(2024, 8, 26), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('19634.96'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('8cc67b59772fd919a6cbe15f6c0d8aab53b7ba47a79875cf3c47875336f00b3b', datetime.date(2024, 9, 10), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('422.48'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8cc988820e7de226da09d766c5bda8fcac6b0249232e88c9eb08235f556b9dae', datetime.date(2024, 9, 11), 2, 'MERCADOLIVRE*MLDNR OSASCO', 'BR', Decimal('131.84'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('8cf71ecfcc7685ec235bf8b3da137a0a72bf462ab458e625109df8c9dfd5e71b', datetime.date(2024, 4, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('8d2944cba04b6e05870c640f443a2a16bce397b9b2a946792a1a1f8def24740c', datetime.date(2024, 6, 28), 2, 'IFD*RSNT MIWA RESTAURANBRASILIA', 'BR', Decimal('193.80'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8d35fab3e37ddb878f3591b69a81a6ddb3f5575786851f91188fd046fd2e78da', datetime.date(2024, 9, 30), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A_1', 'BR', Decimal('1367.02'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8d3f21e11c251ad993b56072aefdb23479a7bc05fd350c58938de533fde5cfca', datetime.date(2024, 6, 25), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('17.85'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('8d744c604cd6bdf07006b0caf67337b7c39adc8b29c34a191b3296f734eb218b', datetime.date(2024, 7, 22), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('8.40'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('8d7c227b031944247df0e56438701878a57427f38edc539ecba0cac9b69fa2d1', datetime.date(2023, 12, 22), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.92'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('8d877c6f52ae2f60884bd53b09e9f33e95c95a27349f25804859d11788a74b51', datetime.date(2023, 12, 24), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('99.95'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('8db54644099ff8ccb93c8739391c7b287fcca61957156e74a100c52d88dc2185', datetime.date(2024, 9, 27), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.95'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8dce3bb9f1df0798f7b95ccd053d2612b5c4eeb159fa595a6e29a93abb89ef0a', datetime.date(2024, 6, 28), 1, 'Saldo Anterior', 'BR', None, Decimal('18373.89'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8de485719ca9a89a64eea22dd4e371e385587892f34516bf7ad31777aad1e5a5', datetime.date(2024, 11, 27), 1, 'Pix - Enviado - 27/11 20:07 Kabum', 'BR', Decimal('349.99'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('8e11a1b5430835e78090caeab7694b969b2099579b992f7d37f990c3022bcea5', datetime.date(2024, 5, 22), 1, 'Pix - Enviado - 22/05 12:09 Jose Reinaldo Da Silva', 'BR', Decimal('35.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('8e5cd1c2538fc345d02d5322bde7fb643e5bb956051b0b02db0dbe4853e7a71d', datetime.date(2024, 3, 9), 2, 'DEPOSITO DE BEBIDAS PI BRASILIA', 'BR', Decimal('61.25'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('8e9436216ad7e46f2db2cdb9b4573dfeb3666f3d0ab45ef1b35301605ce7c6f4', datetime.date(2024, 10, 29), 2, 'PARC=112 BRAS PARC 01/12 BRASILIA', 'BR', Decimal('419.00'), Decimal('0.00'), 2, 1, 12, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('8e9ac7fd537a7672b7812ac2d3a15d81a3ae3ef033c9637443b4ea7a701669ec', datetime.date(2024, 11, 7), 2, 'ChoperiaBierVila BLUMENAU', 'BR', Decimal('221.88'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('8ec9f861ce9b6b8c85aea93b0b97fcddeb39825695b3504754ae92b25edd4f00', datetime.date(2024, 3, 23), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.96'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f014ee7e5a28cbcee96910b79d080dd379ac71eaef6f617632a312dd4b2a294', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 10:57 Maria Eliene Oliveira Port', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f102693989e7434e83057e86f505e80169da7a009ef85a25c6f8658aa4cfb5f', datetime.date(2024, 12, 12), 2, 'ARENA BRASILIA Brasilia', 'BR', Decimal('8.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f231bb3bc0fc1e5b420962de90cc513b23cf0f8e32a3194edfb5874e73514ca', datetime.date(2024, 9, 28), 2, 'LANCHONETE LILI DOCES PIRIPIRI', 'BR', Decimal('63.50'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f25eae32ac8bffeda8ca57ede0f9a6c25688cd7ee29b7f1dffe2d6461805f24', datetime.date(2024, 4, 6), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('39.94'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f303ac07dd964d99ea2bced6004bd30eef3c1f615ad4a46d6a3216e0558a9e2', datetime.date(2024, 5, 28), 2, 'AmazonPrimeBR SAO PAULO', 'BR', Decimal('166.80'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f3952bc73c3b27766bd313ef918d99676bee629f483a1fab863b33c73ce7b03', datetime.date(2024, 10, 16), 2, 'GOLDEN GOIANIA', 'BR', Decimal('22.80'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('8f6d7ed6dbc5343bb60177ad7ef012596456a745d67dc93a4e7bd71cd978b29d', datetime.date(2024, 5, 17), 2, 'PAG*Folhadesp PARC 03/06 Sao Paulo', 'BR', Decimal('109.60'), Decimal('0.00'), 1, 3, 6, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('8fafb28a82217f3226f9f5b0219a5fecbefeae7bb94b1634cbf00a0d72b92451', datetime.date(2024, 9, 28), 2, 'AurideaDeOliveira LUIS CORREIA', 'BR', Decimal('100.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('8fb91af8deca1134ca2517c62cda7d6d6ed101ac3e3ccd4a7370e8cbef4505b1', datetime.date(2024, 9, 23), 1, 'Pix - Enviado - 23/09 15:56 Centro Hiperbarico De Bras', 'BR', Decimal('400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('8fc832b47ffa3999bb67ec6b64cf37583580ace23fafc4337bfe5c895db441e5', datetime.date(2024, 4, 1), 2, 'FEDERAL GOUR BRASILIA', 'BR', Decimal('120.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('8fd182c58b499bcab741af9354d8ebcfd18d587c26a5ea75a72e39e82ee63152', datetime.date(2024, 2, 15), 1, 'Pix - Enviado', 'BR', Decimal('800.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('8fd2f5d42cfded475ae5b2223e603eed816e07fd8adf53fb044985f4659785aa', datetime.date(2024, 1, 27), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('34.58'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('8fe0c5f7952cc8d48a58b6254c17845ba9b7b12075fd24fd81af011fc19f2192', datetime.date(2024, 4, 6), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('220.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('90145a5e1e531908969c3836957ec24bd4f8a14167019d48ca86e02bb4cd8b4f', datetime.date(2024, 10, 17), 1, 'Pix - Enviado - 17/10 16:07 Maria Eliene Oliveira Port', 'BR', Decimal('40.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9024ca3d414b18f4805211c13cf86eb71a9479dc531b8f4355fa4d603dbc28e3', datetime.date(2023, 12, 17), 2, 'IFOOD *ifood Vila Yara Osa', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('9028e23ac1f8c67e9d7d8bc26f81bae571a32ce537a01b6b5e8942bc0bab464f', datetime.date(2024, 9, 15), 2, 'UBER* ONE WWW.UBER.COM.', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9030a2ff3273e7182b8834c8ca3dcf73c41bf642bec891e7edd3d5696057973a', datetime.date(2024, 2, 26), 1, 'Compra com Cartão', 'BR', Decimal('299.99'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('904d772be6f8befc2666b6c6d64a3857caeb17639e981df66be516e81a0a6add', datetime.date(2024, 4, 19), 2, 'FRANPESO GAS BRASILIA', 'BR', Decimal('130.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('90502c6c1734fbd3570eaf626cdfe5ab367b532916b4388feb617902767cd918', datetime.date(2024, 11, 19), 2, 'JI BRASILIA BAR E REST BRASILIA', 'BR', Decimal('105.23'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('908f01bd641f7026652984fc25c87442a140027fee844b350f5f37e70e7eb841', datetime.date(2024, 1, 14), 2, 'HOTEL MORUBIXABA BARREIRAS', 'BR', Decimal('483.23'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('90b69b29a8067b6775f30c77e498fa1af23d0338beeb113f4b25a6f43effcdd5', datetime.date(2024, 4, 6), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('12.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('910f714908281d29fc5f1e314ec2299246c9098f1493d60a549540c011b5bdaa', datetime.date(2024, 1, 29), 1, 'Pix - Enviado', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('912a0d85093aff574b117f4ee15bcd9c453a8a36f606aceb3b828cf479dec2e8', datetime.date(2024, 1, 29), 1, 'Pix - Enviado', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('9144d57473ba9f3f8d69ddd42089ece91769d177f31d36764678a6c136575719', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 09/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 9, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('916068abbc04abe8e6cb0f93e163fb022efa8ab0ed00f3a8dfe3b252766d6788', datetime.date(2024, 1, 2), 1, 'Pix - Enviado', 'BR', Decimal('340.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('916d11436aaa9955606eef7dbbbd8fedf0c3e3225099d832267abd47401edce3', datetime.date(2024, 9, 20), 2, 'CR EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9179342c41e50f950f2d4cad4bd34e4b5296ed20c6a4dde9c763b8332c09e62c', datetime.date(2024, 9, 22), 2, 'PARK 9 ESTACION BRASILIA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9179944ae6ffd07d10a93923b54359118c06a5051dd6d6ae04b761482a78e44d', datetime.date(2024, 10, 30), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('149.17'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('917ed540d2ce1d85752dcc2791ce56628f6c9783f2d2d1b1975e992b809fba44', datetime.date(2024, 6, 10), 1, 'Pix - Enviado - 08/06 11:18 Marcos Willian Gonçalves J', 'BR', Decimal('270.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9182cb9b5d66efb4bd16065af446f902a55885e21a4eb32f4ed94a127a7f90e0', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 05/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 5, 12, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('918718bf257b875c481b708990c47ffae19ea61fc018460da57055ea8925f9ad', datetime.date(2024, 8, 23), 2, 'MERCADOLIVRE*SOLDIERSNUOSASCO', 'BR', Decimal('288.70'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('91c4687ee36026ea79db0a43fcd303b12c4f341b121fb67a667fb6d36040ebe9', datetime.date(2024, 12, 6), 2, 'CEA BSC 700 ECPC BRASILIA', 'BR', Decimal('289.96'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('91f5f419f0b38a8cde47de863e2437db4931c73a081a087085d3b608fe9420b6', datetime.date(2024, 5, 15), 1, 'Pix - Enviado - 15/05 13:06 Moov Comercio De Suplement', 'BR', Decimal('630.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('920c4d9765696e2387d2380cb0abd1b2f678bde5ba37d9943d28b4ae48285a66', datetime.date(2024, 11, 2), 2, 'REDE CINCO ESTRELAS BRASILIA', 'BR', Decimal('105.06'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('9229ce3f96a9a18fa7fc2e33a8227557ae5d39103f10e655f3ec3ef90eb9d0f5', datetime.date(2024, 12, 15), 2, 'UBER* ONE OSASCO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('92419d8f52aaa246829e761f70a9b74517d45db1d3b5e310a2890502ae9514ad', datetime.date(2024, 9, 30), 2, 'MERCADOLIVRE*CARLOSROB MARLIA', 'BR', Decimal('89.80'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('92478424b91028ac5639bbd2dccabbf2299f31b4a5dc384fdb98abaa673cf447', datetime.date(2024, 11, 13), 2, 'MERCADOLIVRE*KPARTS OSASCO', 'BR', Decimal('318.22'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('924afb04ccdc9d64180de00691ed3fce6eabdf2b6fe3eea52dbbbd4e29bb8840', datetime.date(2024, 6, 25), 2, 'IFD*KATSU HMK BAR E RESBRASILIA', 'BR', Decimal('158.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('9269abab4246074d43daf49980b9c16fc6fa1470935134151ccdaabc928e706a', datetime.date(2024, 5, 29), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('92879c55435d6fd633ca97da8809887de444a39bf32e1d576aae62aad567b599', datetime.date(2024, 11, 3), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('14.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('929e032a48e287dd7dcd5d336a5614e04ffbea483557e6d70a4ea97e58640297', datetime.date(2023, 12, 16), 2, 'LAKES RESTAURANTE BRASILIA', 'BR', Decimal('372.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('92a237dd36ca696f662c2125fef06f5e81a7d78144fc648c3c40f42ea9f8888e', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 03/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 3, 12, None, datetime.datetime(2024, 12, 21, 15, 28), None, None, None, None, None, None, None, None, None)\n", |
|
"('92af13629cdd2bf6847e5503c610e0d477bf99aeb808bc9d325b5fb64840a91c', datetime.date(2024, 3, 30), 2, 'PAG*WeniaFerreiraDo PIRENOPOLIS', 'BR', Decimal('94.80'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('92e5573a3074d80f017eed146fc68ca6fcbf858d3b2eb31811636c1cc81cbbe3', datetime.date(2024, 11, 6), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('29.79'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('92fda0b17d4591c5629534e99e2ad3594707acd524bb1d10098524012853d4cb', datetime.date(2024, 9, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('92ff2c47d76590d45f1bbf038334260e4074534fd1f4301cb1020f6fd93fda6c', datetime.date(2024, 7, 23), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('451.64'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('92ffcf8c48702845d0dbbdd87dc39de52d429820612bdb679f2ec15e6ee7a469', datetime.date(2024, 3, 6), 1, 'Pix - Enviado', 'BR', Decimal('7.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9316de1f75c6d530c77bd3b68ca2980389ede876ed7372a3f68c509f6cf356ce', datetime.date(2024, 10, 3), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('94.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9324fe8f9662032a9447ac9c69a2819804b5547270ab86067f8317e67bc984a2', datetime.date(2024, 8, 10), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('9.42'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('934136a89d5df03438a87311f832481013336fc11cf25944c9e29106762e21c1', datetime.date(2024, 7, 22), 1, 'Pix - Enviado - 22/07 15:28 Wanessa De Menezes Souza 0', 'BR', Decimal('980.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('935bc8798be2d7aa4bca5a5c1582491744bed4592eb8e4076e0cb55b7fab3712', datetime.date(2023, 12, 13), 2, 'AMAZON BR SAO PAULO', 'BR', Decimal('140.96'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('93b14a22f2fcd5534096138ad4ff91a677b4eadd93d1424b60ebab6c3e556512', datetime.date(2024, 11, 21), 2, 'MERCADOLIVRE*DVSCOMERCIOSASCO', 'BR', Decimal('255.20'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('93c61155a83584a5d4011506bc95f5fe43425b4bfb5a4711095c56d8ff636aab', datetime.date(2024, 1, 6), 2, 'ARAUJO E RIOS LTDA PARNAIBA', 'BR', Decimal('29.34'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('93f09ae04d7ba0519ad0eac39ceec341b0d0924025f3992caf87a21faa8aa1ef', datetime.date(2024, 6, 18), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('9405244bad77f620aa2534397b0ecd8f4f870178017a632f1d1bb8b92c52885b', datetime.date(2024, 1, 19), 2, 'ifood *IFD*O PUDIM P Vila Yara Osa', 'BR', Decimal('84.90'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('9405849cf07f127bf20d85d4b4bd76b29dda280e700cd215b3a5bddb3ce1f5ee', datetime.date(2024, 5, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('942a78ff4013a65240856210fde2ef1c4da78829cfaf1f52a8db606efcba499a', datetime.date(2024, 8, 9), 2, 'HOTEL GOYA P*hote RIO DE JANEIR', 'BR', Decimal('424.20'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('9441df557b6f6126de77f404cf55db9528c2ce8c214e34c5df813c9733246c53', datetime.date(2024, 11, 12), 2, 'BRB MOBILIDADE METRO BRASILIA', 'BR', Decimal('5.50'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('944792ddfb7f3d7c7828d2ba45b879b878082401914a71ffc1930518b4ecc97b', datetime.date(2024, 3, 25), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('13.92'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('945d407ca3bc1f0884efafd043330a8726fa5c1eb56fa49336e61916442944ed', datetime.date(2024, 4, 30), 2, 'CARREFOUR PSI 329 BRASILIA', 'BR', Decimal('188.71'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('9470c609b2955c223e64fa0bc8d59c897c9f2b09b6bf1c49b2eefcf3321253df', datetime.date(2024, 7, 25), 1, 'Pagamento de Telefone - VIVO FIXO NACIONAL 13 DIG', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('948bdf429173f60b45e80aa8d35802cef5ae2e93ca627ef07658baec9197271d', datetime.date(2024, 7, 1), 1, 'Pix - Enviado - 01/07 13:42 Utb Uniao Transporte Brasi', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('94a0611ff651c4169c031f7fdc22131793dd6fb585df2fcc1d28f2a0df820952', datetime.date(2024, 2, 6), 1, 'Pix - Enviado', 'BR', Decimal('472.10'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('94ceb24155cb42a6adea567e530ad7f5b6e3532f0837d30d53018cab892ab8fe', datetime.date(2024, 5, 17), 2, 'IFD*SOHO ALIMENTACAO E BRASILIA', 'BR', Decimal('214.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('94d1ab914f78ee7c22092a53db5dc0024ef53f85138ad63c66b32fcaca24b4e0', datetime.date(2024, 6, 11), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('11.50'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('94ef34a07fd23b5dc98dc19fc0882e7c57ab0b2203844541159f6e57b15a8c42', datetime.date(2024, 7, 1), 1, 'Pix - Enviado - 01/07 10:45 Neuropsi Psicologia Basead', 'BR', Decimal('1400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('94fee9c6957528142406ccd926b0a3c21d6ce2049307e6c42356464395010ef7', datetime.date(2024, 2, 14), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('35.08'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('951904116a23bda01685e9224d5dd26908d3f5d226d9c43bb899f134bd2a137f', datetime.date(2024, 2, 7), 1, 'Pix - Enviado', 'BR', Decimal('54.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('951ad9d67c11ee3aac7999abcb4e4c10aa0d0425e9471aa5daff0b301947933a', datetime.date(2024, 8, 23), 2, 'T.T. BURGER BRASILIA', 'BR', Decimal('18.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('953de8dc14551fdffb72055f03f373fd2084c52edc7b140b450ff9357c2d5229', datetime.date(2024, 6, 8), 2, 'IFD*MARIANA PERDOMO CONBRASILIA', 'BR', Decimal('121.99'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('954661baf84adae34d2bd91589ebd04ea52c5dcf22d5c1025ab1674c220cb52b', datetime.date(2024, 2, 10), 2, 'CASA DE BISCOITOS BRASILIA', 'BR', Decimal('45.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('954cd9a584835c8aa51067dd653bf3522c02be6d2118f4bd196214e4a73388c3', datetime.date(2024, 3, 11), 1, 'Pix - Enviado', 'BR', Decimal('90.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('959b6ca5a05cc63f5b6fe45e93aa5096e8cee3386ff8efafe11ef127517382ff', datetime.date(2024, 8, 17), 2, 'CAPPUCCINO BRASILIA', 'BR', Decimal('211.31'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('95c35eaceff35247785d9d6b104917e649e1e983c721f23d029132a43b317ec3', datetime.date(2024, 9, 29), 2, 'IFD*SN COMERCIO DE ALI BRASILIA', 'BR', Decimal('140.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('95ea8e70e87a0a121f0e4dab1cd29474204370d05cfeb182ace8b08e5b8a7045', datetime.date(2024, 5, 24), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('960c68148ca613928b6bf57e3932b9560973ebc2a0f6cd86a629f19810b04109', datetime.date(2024, 7, 31), 1, 'Movimento do Dia', 'BR', None, Decimal('90.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9613d7e8749675d909e565e69ba5cb26882762a120034ff2fc3879651e431a70', datetime.date(2024, 12, 6), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.38'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('963201e25b2bd7648aed699d6c0accfc3264ad16552e60a1911075e7933031af', datetime.date(2024, 6, 14), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('965c617d95f943239409f0aa1ee45b0c7d09bf73234fb8e23c92c009497109ed', datetime.date(2024, 5, 28), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('14.26'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('966f50547f7339496877ea5abeaea27ace522efd423deae60db3e4e739b6ad2a', datetime.date(2024, 9, 18), 2, 'WOW*SHILOAH SPA Brasilia', 'BR', Decimal('930.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('966f7ef2e55245f8552a9cff635a300a49661c93d2b1b025308590f01fef7f6e', datetime.date(2024, 10, 20), 2, 'IFD*MATHEUS ROCHA DE SOBRASILIA', 'BR', Decimal('120.21'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('9693a99b5a95469890a6192eaca1fa92be7260ec85c81fa30ca5a54fce298681', datetime.date(2024, 12, 12), 2, 'DROGARIA PROMOFARMA SAO PAULO', 'BR', Decimal('67.50'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('96a439c7cac726767759941be61c747eac9d456bf0a2648de857a3d0636c145a', datetime.date(2024, 12, 11), 1, 'Pix - Recebido - 11/12 19:13 00065472934672 CLEBERSON J', 'BR', None, Decimal('500.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('96aa8bf3f73f7ba4d9648e8e3047a4e2992f59cb95e1cd4f3e48daa6fa8250a5', datetime.date(2024, 2, 29), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.03'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('96b8cc2599b02ca33f8750bbe25a6bb5eae39dd3674bff285951f250e6be51b9', datetime.date(2024, 6, 24), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('128.97'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('96cc196a7b77c9b9e5d0ffc2d64898d843015d116c1e85230d4fa141fb94e626', datetime.date(2024, 5, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('96cc901d8e28a6349bdd072fc21837920a7df3003615d1b24b7bcac10a464ff8', datetime.date(2024, 5, 29), 2, '365 CAFE BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('96d37fb6c375e92e31a54a829075cf63300c776191b4d9fe75e43ee09fb590c9', datetime.date(2024, 3, 27), 2, 'CASA DO CHOCOLATE BRASILIA', 'BR', Decimal('283.89'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('97234eba18c0f019100c25319e2dfd0c3b5f7921f8243b2e8690a4c0967e6522', datetime.date(2024, 8, 22), 2, 'PAG*XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('976d35a60b47a9db419df6aae53b83b8f82b10abf5c9f0f55cf969cdce219e33', datetime.date(2024, 7, 31), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.96'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('977b572c197abf0349b53ee60bddaa1efbe2a48afe9c8aec4f4f8f2ef16035ea', datetime.date(2023, 12, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('9784fdeaa574757c4fbbb44613dc13035bb9cdccee27fabbb99b6acc82877525', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 10/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 10, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('9785a6556aafee0498846a1a3fcded32cb859af5879beca08f1e67b5cc040e8a', datetime.date(2024, 6, 18), 2, 'PAG*DiogoLealPimenta BRASILIA', 'BR', Decimal('125.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('97924413c4760e4e413712fc08ab80570d6c46e1f988293d8056f362fca1ad9c', datetime.date(2024, 5, 29), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('253.36'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('979701d9d17c88873d7aea441f55847be6123011f7ac286e811f51d5ce68efcb', datetime.date(2024, 5, 31), 1, 'Movimento do Dia', 'BR', None, Decimal('90.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('97a37d380742d806f8fbe260c0213c1c9eaf6bb199a9593ee4bca8088204c0e1', datetime.date(2024, 5, 17), 2, 'PAG*Folhadesp PARC 05/06 Sao Paulo', 'BR', Decimal('109.60'), Decimal('0.00'), 1, 5, 6, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('97b876183690dcacba60df3c8ca4a6668c00b9973a0d918965b2488ff52d5cc1', datetime.date(2024, 2, 29), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('44.91'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('97beac8e8ccf42f1b408a72910fdb752335c6f188611acd758e426fb99d4d6e6', datetime.date(2024, 3, 22), 2, 'SNOW PARC 01/10 BELO HORIZON', 'BR', Decimal('493.41'), Decimal('0.00'), 1, 1, 10, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('97e59a0a75e9145a642c7acd8a4e2782f3b75181fd48cbe8562bdc906f8c54d0', datetime.date(2024, 6, 17), 1, 'Transferência enviada - 17/06 16:44 CRISTINA B SILVA', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('980e1a96214bcadd6099807f5e474e60776ab8d76d9c74e8720cae04a495be8d', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 13:44 44464525172 MARILIA ANDRE', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('982c20602c66a75fce936f893f9e5138644fd6cd02efe64b64d28c1a1b3b8a93', datetime.date(2023, 12, 26), 2, 'MERCADOLIVRE*SONIAMODA5OSASCO', 'BR', Decimal('99.99'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('9847c26b599724d811810ac58256fcc7577802b80ca89f9bf724a5b8628d5961', datetime.date(2023, 12, 19), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('98516f0b24d7017df81020f4a70aa5c7d1d09414fd3071fa4702465594ec4139', datetime.date(2024, 2, 15), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('985391ef5ab2e1be6188515bfca0c2d765393ceaa94d666f766a1061b5102172', datetime.date(2024, 1, 24), 2, 'RITA DE CASSIA NASCIM SALVADOR', 'BR', Decimal('37.18'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('989cacb35cf160cbf86a9715d64ae5ad742fd81faec3c320cdc5296c1d743e43', datetime.date(2024, 4, 6), 2, 'IFD*ME COMERCIO DE ALIMBRASILIA', 'BR', Decimal('66.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('98c4391b6fa8edc1bd5ec4bdb3aa39a09da4730a256087dab32ec46276e82e88', datetime.date(2024, 10, 9), 2, 'COLOMBO PAES E COVENCI BRASILIA', 'BR', Decimal('62.70'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9914ff5d915f8797143a1760dead2d35b7a7baa4b5f1cc4dfdd3ef23ed50fb08', datetime.date(2024, 4, 30), 2, 'CAFE DA MATA BRASILIA', 'BR', Decimal('44.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('991ce1456a824f164067d30dbdae513c0cf87df421cc4c2de071e2c86bc700fb', datetime.date(2024, 9, 8), 2, 'QUINTAL RESTAURANTE E BBRASILIA', 'BR', Decimal('215.91'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('991db4d90594f5cca2ed1e0f233183a5952846b5804e9a5a22b09a47aedb48eb', datetime.date(2024, 6, 24), 1, 'Compra com Cartão - 22/06 09:34 ECB SUDOESTE', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9921b7aeeff2c92b03f50eeecda024e331ff35fde7fcfa1ef7c89c1ede89d207', datetime.date(2024, 9, 18), 1, 'Pix - Enviado - 18/09 17:24 Sandryne Bernardino Barret', 'BR', Decimal('140.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('992d7884a83436bfcdbcc8f468038c57929c4403f43e994d26ec727d3cd8bbd0', datetime.date(2024, 7, 29), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.94'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('993eb0074348f4e1081cd6fa99362a555ef65a822b2d8eda03e1840c07c875aa', datetime.date(2024, 2, 7), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('995f9e361904ffb4d360d9fbf94f878f32d275309946a919113670cc47542557', datetime.date(2024, 4, 7), 2, 'IFD*UPTOWN BURGERS E SHBRASILIA', 'BR', Decimal('76.70'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('9992cd08828804c16cec339ba13009cab9e0a6970f370b8ceafae08a58dd9ced', datetime.date(2024, 5, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('999697d502ff9216140898c5225b4df99322c32ffe3649767e669e4e49e601a6', datetime.date(2024, 12, 13), 1, 'Pix - Recebido - 13/12 08:10 00004458220900 MARIA ANTON', 'BR', None, Decimal('151.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('99996fd1afac83a9fdc5dce77dcc7b8492b251351970a678b0c7d2b53567597f', datetime.date(2024, 6, 13), 2, 'PANINOTECA BENITA BRASILIA', 'BR', Decimal('97.43'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('99dd1bd806aa3b094eac164100dab91368dff7f8e4730c85596e20542c533c87', datetime.date(2024, 6, 27), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('99ead7d191547c9ee7a73d93c07b964dfb7a430cb883d51afd2908e840da55fe', datetime.date(2024, 11, 23), 2, 'ZIG*Mane Mercado Brasilia', 'BR', Decimal('94.50'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9a24ccdfa63080a8cacb69acfdbebf41620e84c1574d78de7b35348efec0a90e', datetime.date(2024, 3, 27), 1, 'Pix - Enviado', 'BR', Decimal('90.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9a418764097bc3ed47c719a7bbebed700d90423724c183881eb980e7e08b314f', datetime.date(2024, 9, 25), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('18113.25'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9a489c47dbc571ab1f5d0c3e686e6da0762f61af23abd49ccf7f0e891dcfa716', datetime.date(2024, 9, 18), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('199.97'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9a630fe1e95525eb5328503577c03865278513f9a75a2aa61b6d88a19535ef1f', datetime.date(2024, 3, 3), 2, 'IFD*iFood OSASCO', 'BR', Decimal('20.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('9a8ea1dfe5b6ea43b222ccdcf42a6b6e8cfa10b97ef035c689498dde7ae8ca99', datetime.date(2024, 4, 20), 2, 'MERCADOLIVRE*MMK OSASCO', 'BR', Decimal('121.21'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('9a98cb6c7bb450ac8b3a0975fa4bf12f56c03ccc3aec78b52cfbd6e7e3a596ef', datetime.date(2024, 10, 4), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('13.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9aceb1afd66eb74a3aa27236f9f35d1bbb79c094a6b9569bd5310d35fd557863', datetime.date(2024, 7, 14), 2, 'NAZO SUSHI BAR BRASILIA', 'BR', Decimal('446.22'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('9af0e96faaef79752d081b0f129ce7873aec778050ba8cb0ff654ab15e076a92', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 15:12 Cleiton Brito', 'BR', Decimal('260.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9b1e2b50f62d7782d886fb383451e958cd2a2ec250de9cf90a2454361ba9e9d8', datetime.date(2024, 1, 31), 2, 'PICANHA MIX RIO BRANCO', 'BR', Decimal('109.49'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('9b213d2c35a16cd02bd787b672167f47a2a23f839b74b3f04b82064997924fac', datetime.date(2024, 1, 6), 2, 'TITARA GASTROBAR LUIS CORREIA', 'BR', Decimal('231.80'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('9b27e0e2a338f1fb5e9f935f7345a059ff77950d3f7f8fb9e70ca2afe9d02807', datetime.date(2024, 4, 26), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('6.98'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('9b78d1bb5a3829c3c16b1dd4a3a011ff9639f76694d6db9b05af6a1b270dd365', datetime.date(2024, 12, 20), 1, 'Pagamento de Boleto - NU PAGAMENTOS SA', 'BR', Decimal('390.28'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('9b9589c97dc035b95edf3fdd8e4e79df958531c53ff469bffb225f48f1138420', datetime.date(2024, 5, 21), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('8001.28'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9b98c5509df7d456e708b29174fd54341677f1bd762eeda3b29c31a0793132de', datetime.date(2024, 9, 25), 2, 'MERCADOLIVRE*8PRODUTOS OSASCO', 'BR', Decimal('617.22'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9bc0210d3920cdc8a759344ea2576885e262c5c834478b1814f7d817d0b2ece1', datetime.date(2024, 10, 28), 1, 'Pix - Enviado - 26/10 07:53 Vibra Energia Sa', 'BR', Decimal('256.82'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9bc489423f46651648ed684ac8e98b6f30603e469de17842cbd934f7a7cc7bf2', datetime.date(2024, 5, 24), 2, 'AMAZON BR SAO PAULO', 'BR', Decimal('221.15'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('9bf0a40987d91962b647f488f1be550771a5a90461099ce4a41fb14d25ca47c5', datetime.date(2024, 9, 27), 2, 'Wellhub Gympass BR GympSao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9c4ac32fd18b395071e960450ab415f5fa92e13d226aa76d249422640dddd152', datetime.date(2024, 2, 15), 2, 'IFD*GASTRONOMIA INTERNABRASILIA', 'BR', Decimal('218.79'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('9c5c4c139a28c3d6af1cbefc8e44bfcb627ac1261474cc42e8a1df0a86569b5f', datetime.date(2024, 5, 25), 2, 'LE VIN BRASILIA', 'BR', Decimal('415.84'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('9c6464f5a84be38010105f43e1bd6a1b8435679f60c3262398e63445b1fda806', datetime.date(2024, 12, 7), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('69.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9cf7adb2dd13475af0a6680b5c1d2bdb8df07d7b316cb1a6ab1fa1dad0b0caf1', datetime.date(2024, 5, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('9d1ef0597cb672b7147c76efba201beeab0def55e06fe6b1d395df0932791e86', datetime.date(2024, 10, 23), 2, 'BIOEXATA FARMACIA BRASILIA', 'BR', Decimal('75.74'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('9d79c31d62413ae92de7a6530334685fb84931ae744589942d4eeb107c96a0cf', datetime.date(2024, 10, 30), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('29.93'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('9de7e7a7fe4611b7d24e2b9aea7d5c24cef8aacfdc6c6e2332643c6a8123882e', datetime.date(2024, 4, 1), 1, 'Pix - Enviado', 'BR', Decimal('700.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e060975baf3868a6872bf95346e36f5b2efa3b58974ed77850da9e1fa7d0489', datetime.date(2024, 2, 6), 1, 'Pagamento de Boleto', 'BR', Decimal('6462.94'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e17e13a070ac0cbcf8364c25342eb8b1ef97cfe0e9073fb4b19df5f21fed9a1', datetime.date(2024, 12, 10), 2, 'AIRBNB * HMTSMAH2WR SAO PAULO', 'BR', Decimal('1129.36'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e1e1807e9d8415d26411c1030f10a79ec894cdf2911e792b418115586f37984', datetime.date(2024, 12, 11), 2, 'HABANERO SAO PAULO', 'BR', Decimal('132.95'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e37b15dc0f4895e726b08121c3f3bed7d840e8366f5d716dc3baefdbc765218', datetime.date(2024, 1, 19), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('23.38'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e3fca815d2eb2d8ada69a56628015e6868fc9d4e1899c353fef0619613282e6', datetime.date(2024, 12, 3), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e46c3aaef3836a7e15a38e705ed7c3bef077e704f7ea7738c73daedfa6dbb04', datetime.date(2024, 8, 16), 2, 'IFD*Josue Cardoso De SoOsasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('9e49946e1dbf876726b03db22ce5b05d7917fee123f7cc1b913de1860d2e152a', datetime.date(2024, 2, 25), 2, 'SHEIN.COM SINGAPORE', 'SG', Decimal('94.63'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('9ea60bf70adb52ab6aa82f3317969139cad14c2267138a8d3e8703c8ae1d7b70', datetime.date(2024, 3, 4), 1, 'TED Transf.Eletr.Disponiv', 'BR', Decimal('210.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('9ed286af8c6559298ab4bb6f106e5d96a839ccfbd6f8a4f19ed5b0bcbde56177', datetime.date(2024, 12, 2), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9ed9a9e900fca6949fd5fbf860d09c94c91468b23ac8a96932b9d70397dc53be', datetime.date(2024, 10, 21), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('14.35'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('9edefb33c4cbff8b363aa8db93280d3b857ef7de6f297312165d46eb25d78bb3', datetime.date(2024, 6, 22), 2, 'PAG*TICKETFACILSOLUCO BRASILIA', 'BR', Decimal('18.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('9efcebbebd6bab7edf1b4b438da7059d63e732ce06f163a75272da1a747fefed', datetime.date(2024, 9, 4), 2, 'MERCADOLIVRE*5PRODUTOS OSASCO', 'BR', Decimal('219.64'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('9f22fca063ce1821726baacc43c682470aca0c46f24ba024eac45c6b9c2edb83', datetime.date(2024, 10, 2), 2, 'RITA DE CASSIA NASCIM SALVADOR', 'BR', Decimal('79.10'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('9f3887e9dac91629190ed83253ea74e04891d1d3980540a99f9d028ad919ced1', datetime.date(2024, 12, 10), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('15.66'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('9f42fa0678b00c9b94dbe3b4136c1af9ce21fe6952bfed6597f1f9ea0517ad6f', datetime.date(2024, 7, 4), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('55.90'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('9f74c2e850fbc4ae8953b20f7a719eea52c9fce68d9353f5ba5852c886c0a3fd', datetime.date(2024, 10, 28), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9f82867a63162e4bad54d328daa1e534404b33f5bb3fea9181ef45bb81cefd36', datetime.date(2024, 8, 24), 2, 'LOUNGERIE BRASILIA', 'BR', Decimal('207.60'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('9fbe22af4728fca2f1a83e819d1a28ada355a9d2ecffc7f6dfa391e5222d7208', datetime.date(2024, 2, 29), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.01'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('9fbf8b4c65d3b138d024f1968ee14f4cd7224dcaba30d0692366e90b2fb8e1b9', datetime.date(2024, 9, 17), 1, 'Pix - Enviado - 17/09 07:30 Jose Reinaldo Da Silva', 'BR', Decimal('108.50'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('9fc4c555cae69d76a1feca9c9a00b588777ca66ef968c73f813b89021cd9006b', datetime.date(2024, 2, 2), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a000fe4492be6ae737405ea82baf43f84e707bf2a42d2ee1390d068ae3662899', datetime.date(2024, 12, 12), 1, 'Pix - Enviado - 12/12 08:37 Angelita Ferreira Barcelos', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a0385581f01398f3d8616d2d6a9cf643954ccd22fc16037df6647cc8a3f0a6bc', datetime.date(2024, 1, 5), 2, 'PAG*DecorEtiquetasE FRANCA', 'BR', Decimal('177.36'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('a053682df6580c7068e149e60a6d610a60b80c04d3a318b6d2443690f065828d', datetime.date(2023, 12, 22), 2, 'MENDES FILM BRASILIA', 'BR', Decimal('1110.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('a05391d229770e582ac7ee857d2f7c0263f04e83d60e84ea952b426ffbe324a8', datetime.date(2024, 8, 7), 2, 'IFD*BSQUARE PIZZA BURGEBRASILIA', 'BR', Decimal('232.99'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a09f9d224e3c1f7287dda3af978f6bdb26d5bb33c5f10505ddc8f6f0acf13e84', datetime.date(2024, 10, 29), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.92'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('a0b14968fde21b9e83fa8f56e0a32532ace4e38a1f5ee4acfc420a2ae1936a03', datetime.date(2024, 1, 17), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.97'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('a0d5a313386c3fe5da9f007d5851821f6ee63afc5a53cc8d1e23ea3530879877', datetime.date(2024, 4, 6), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('27.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('a0e8898775e2b200bb678019fb3cd57f3f77e02ea334cd9000cefc56aec2a310', datetime.date(2024, 3, 14), 2, 'LATAM SITE SAO PAULO', 'BR', Decimal('93.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('a128965009506b9938f2523e80950a1bbfd7579a890e1895f23735d2849fdb38', datetime.date(2024, 6, 27), 2, 'BIOEXATA FARMACIA BRASILIA', 'BR', Decimal('809.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a146197af2709e19fb71b9fec50c88e9ffcef863402226ed0f18532df452ec7d', datetime.date(2024, 12, 18), 2, 'IFD*IFOOD CLUB Osasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a1645e98faf896cdc180f186301c5c26498362f689b216f5e5f17d71883c7889', datetime.date(2024, 1, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a17337e99114f2c309e71d177cb776320b3a809b6c350aa4d9e13d192383a10d', datetime.date(2024, 8, 16), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('30.98'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('a193aee12fb063d9d933b644f8eeb2d180650daa71d97395e051a0dd1d14c813', datetime.date(2024, 1, 13), 2, 'POSTO TATU FLORIANO', 'BR', Decimal('119.25'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('a195be95b46c2bb63eb68973779498dd1037fea3d2fc57590fa7f6e24a5187b7', datetime.date(2024, 4, 8), 1, 'Pix - Enviado', 'BR', Decimal('18.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('a1a1051a8132e4e4e18cc40ec27b785e4af4fb1e5f519fc8675e97855be8ca87', datetime.date(2024, 8, 30), 2, 'BIER FASS BRASILIA', 'BR', Decimal('143.50'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('a1b16e4623e64599ef94ba95971ae040756fb9c006639a5ce859264b40bcff07', datetime.date(2024, 2, 15), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('98.32'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a1bcd3c0015af612cf0ad85215f5b1c90ee9a7b7f5b10eadb08db58927f59699', datetime.date(2024, 2, 26), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('4.12'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a214976a47db8a26debc33b74568c4658a8291faa40566df2d46767b4f34b9ca', datetime.date(2024, 7, 8), 2, 'LA BOULANGERIE BRASILIA', 'BR', Decimal('72.33'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a219f1ef82381e836c70ec91df1dbee61252601af61d8188c789a28c2ff4566f', datetime.date(2024, 9, 20), 1, 'Pix - Enviado - 20/09 14:45 Francina Noleto Aires', 'BR', Decimal('104.20'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('a22675e9e214cf1f772ba1ad3dd6f4f6836dd5ff1ad02f759ea9fb1392e372c5', datetime.date(2024, 8, 20), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('444.27'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('a27c350dc3ac29fe9dc933afd4ae0141ce218d818f3e3e8bdaa22455e07dfa86', datetime.date(2024, 2, 14), 1, 'Pagamento de Boleto', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('a2eb184e22eef3b0c7ae9f0d2f2796c14b61d7c6dfcc3608fc046aac75b0e37c', datetime.date(2024, 11, 3), 2, 'ifood *IFD*SN COMERC Vila Yara Osa', 'BR', Decimal('75.99'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('a309605d5e6cd53a38147b35df0b4b732da0141344e7a6f5cb2e94bb658aac11', datetime.date(2024, 4, 6), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('4.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('a31015eae8f514ac97d516447a540639de286278df8539357ec1799bbb1cd565', datetime.date(2024, 2, 27), 1, 'Pix - Enviado', 'BR', Decimal('10.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('a311ab595cc2efda1d820aaf247e3dc871cb6a233542cae3bb2f7ee522bb15e7', datetime.date(2024, 2, 21), 1, 'Recebimento de Proventos', 'BR', None, Decimal('5690.19'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('a313e16dd08e899fe25814c33ef8e6b254ca403b91de82329b33b531727db2fd', datetime.date(2024, 4, 10), 1, 'Pagamento de Boleto', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('a38e304f57d4d97d7fa22bdd25b3e4ac995f669c548e6163df28abcf14cf657b', datetime.date(2024, 11, 30), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('114.86'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a3b5a13c0762b44abaded714e3eabc777f9693b1d432f7869b5e2ba75af63673', datetime.date(2024, 4, 14), 2, 'MULTIPLAN BRASILIA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a3b6a26571c23e0c3a2473ebb6996b783066443edec90dadb1145363e31eedc8', datetime.date(2024, 10, 18), 2, 'NETFLIX ENTRETENIMENTO BARUERI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('a3ba0fadac3f88c64b797d168182a454a5b9b267aa48536c86c7b59fa5e3fd3f', datetime.date(2024, 7, 29), 2, 'MERCADOLIVRE*GLDECOR OSASCO', 'BR', Decimal('50.75'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a3d96473026fc8b9290254f5eba8c37eca7a30717e82c9671890fb028c55f746', datetime.date(2024, 8, 4), 2, 'GELATO E GRANO TERESINA', 'BR', Decimal('24.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a3e4e7bb192fb1975fc58495952234d9e53dc1762d123465cb1d5b0fef8de8e7', datetime.date(2024, 7, 19), 2, 'IFD*ARCOS DOURADOS COMEBRASILIA', 'BR', Decimal('48.99'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a3fd8623d6fd6fc3c4f47c7dfb00da423547f5c8351ddd675afe15acd25ccb39', datetime.date(2024, 7, 25), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('24420.24'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('a4122a2ad13382b2dae985ba25a401db6472ca0d2f3d06e6d6a1dbce73523d99', datetime.date(2024, 12, 18), 2, 'DELOV BRASILIA', 'BR', Decimal('899.60'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a42e0e700a84ac4448a3d5d0d0b8fb9aba4ed3f54785cf65b986f66effbdec53', datetime.date(2024, 3, 26), 1, 'Pix - Enviado', 'BR', Decimal('1.74'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('a45a6607982cd84c77911fb9ab7c596d0d2774f79900348daa383e57816f8842', datetime.date(2024, 7, 11), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.71'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a4861aea7d943f7ab9af5c9f9a6028828da2deeb1d13ba0c6002f77e879a219d', datetime.date(2024, 5, 18), 2, 'LIBANUS ASA SUL BRASILIA', 'BR', Decimal('155.54'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('a495cfa9d47d777e963443f85cc74d802a42a3c9a0dd78ce5076e30ff807b5f1', datetime.date(2024, 11, 17), 2, 'TRAS OS MONTES UMA CAS BRASILIA', 'BR', Decimal('147.35'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a4d1f5d92c1728bcdb1f3fda08a8a770cedcff96cfa35fa55c3fbd2ed703e842', datetime.date(2024, 7, 26), 2, 'IFD*BSQUARE PIZZA BURGEBRASILIA', 'BR', Decimal('123.99'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a4f76aea9558d8eeb1fcdbd5801d5d0c7a64785d032ec5f481b796167d84faf2', datetime.date(2024, 9, 11), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('219.96'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a50bcc2e65438254ba4065dca2bb23977ff93da346b19a28f6f1b549698218a5', datetime.date(2024, 2, 11), 2, 'DROGASIL 2034 BRASILIA', 'BR', Decimal('61.52'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a512fe8665e9764f0a4d0602704c5c879f493a37d48864d731429937c34c07fc', datetime.date(2024, 7, 23), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.90'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a513bc0d38c6d49a851736406aa1a0cdb7491bc40f4396363ba2d7bdc279103a', datetime.date(2024, 1, 23), 2, 'RITA DE CASSIA NASCIM SALVADOR', 'BR', Decimal('28.40'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a579e1c1ec80ccd0ddfd84c44459aa6e0f7f47604e6a7a78ddbeb0898bfc1e52', datetime.date(2024, 8, 21), 2, 'MERCADOLIVRE*3PRODUTOS OSASCO', 'BR', Decimal('113.80'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('a5874a5904bc4a56bc7f84b4adae5beeffd9bf781365de19f4ceed88c84c5876', datetime.date(2024, 11, 8), 2, 'TIP TIN BLUMENAU', 'BR', Decimal('36.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('a5ec0a1b5bb48baa6c8b50a706c66fa5e8e0a7d348bd076cc3e464577552b12f', datetime.date(2023, 12, 13), 2, 'AMAZON MARKETPLACE SAO PAULO', 'BR', Decimal('52.08'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('a5fee71122f3fcee8d65259152c2d4136e32d42644b0e191f3054173f26ec592', datetime.date(2024, 6, 14), 2, 'IFD*CAMPOS SERVICE Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a60b69e4802c7eeebf0d69b8d2ec867c87e51dd9d56c5bf2654754e2bd0c9f1a', datetime.date(2024, 8, 14), 2, 'Bacio di Latte-LJ3080 Brasilia', 'BR', Decimal('20.95'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('a617474bb9a92c46c07a9f5ae746098008d25ff17dfc0df8e5d474fa69a16856', datetime.date(2024, 1, 18), 2, 'MERCADOLIVRE*6PRODUTOS OSASCO', 'BR', Decimal('229.10'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6360f891a04a8972c96cb876a2a5985e6382da84767604047d5c9ebcae48181', datetime.date(2024, 3, 19), 1, 'Pix - Enviado', 'BR', Decimal('255.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('a66137e8e627091510a1daa19e3d0c6630ac4bec07bc1b9fa8db5cf09efbb123', datetime.date(2024, 3, 1), 2, 'LA DA ROCA BRASILIA', 'BR', Decimal('147.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6690fc02291af906db9f0d2d3df8a4f4f84c633b860f3b7d09b7464904e039c', datetime.date(2023, 12, 28), 2, 'AUTO POSTO GOLDEN GAS BRASILIA', 'BR', Decimal('194.98'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6bd8bb119a579b4a7fd31a71e49e574e2d3a15d94c27c96872a15e56e79008b', datetime.date(2024, 8, 10), 2, 'MP*BRILHODASARTE OSASCO', 'BR', Decimal('300.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6be9d391203a3829b0f6f14a71fb30727425b921a7f45dc8b60b5f5ed31a67c', datetime.date(2024, 1, 24), 1, 'Pix - Enviado', 'BR', Decimal('78.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6cbb63e0569daa9bd7a3816f66d93a4837f517501117653234a443840c30dcd', datetime.date(2024, 12, 5), 1, 'Pix - Recebido - 05/12 18:55 03658507000125 SECRETARIA', 'BR', None, Decimal('325.12'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6da5ad1ab8a4f06c3c931af3deb18735293b8cf2ef7479d936c8163f066941a', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 10/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 10, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 6), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6f8ab69b80e98c2ed18d2365a31217afc530891160dcd1627bec0119820a178', datetime.date(2024, 2, 10), 2, 'LIVRARIA DA TRAVESSA L RIO DE JANEIR', 'BR', Decimal('254.30'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6fdcc4fca5c43df408d0d3427b176eaadf5ccc3086280bef7f1ea5c76b600cc', datetime.date(2024, 12, 3), 2, 'CHURRASCARIA NATIVAS GRCAMPO GRANDE', 'BR', Decimal('135.48'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a6fe1fbe8ea45169d3c7e0547e876d6d3956109a6d2804b5489e599bbfe4561c', datetime.date(2024, 11, 5), 1, 'Pix - Enviado - 05/11 15:50 Loterias Caixa', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('a72f7536ae51a1a820e798428b9aa7b3ae4a46cb288847fe366e1d54e810ab82', datetime.date(2024, 3, 28), 2, 'FOGO E BRASA STEAK HOUSPIRENOPOLIS', 'BR', Decimal('238.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('a72fdb8337c881aa991ed23cd598d6c07081fc59b7131167372e8a1206e34bf8', datetime.date(2024, 2, 2), 2, 'IFD*RC MELO COMERCIO DEBRASILIA', 'BR', Decimal('113.24'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a784a3cd95a2c5420322ae7857510a29677981195644a0b6230f6ecb28f42292', datetime.date(2024, 5, 30), 2, 'RANCHO DOS CANARIOS PADRE BERNARD', 'BR', Decimal('150.59'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('a787bb5c6c5516b3d2b50df88406a2d351680a8b34d22392b07724bf557fb649', datetime.date(2024, 12, 13), 1, 'Pix - Enviado - 13/12 18:08 Babo Domenico Costelaria E', 'BR', Decimal('136.20'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a7887faa5ce280c47b36b6ee291845ac2cf1e5ed8011a7ffecb9f3a4e83b2334', datetime.date(2024, 1, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('40.70'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('a7b57b879864573a35cc1620f80bfe0014dd5b8e1228784b30ab0dbc0f5637e3', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 10/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 10, 10, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('a7e29a349421ca8456507e2eee6d277046ff50746c5bdf197f55e73d638af097', datetime.date(2024, 1, 20), 2, 'HORTIFRUTTI EMPORIO CO BRASILIA', 'BR', Decimal('185.44'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8194a45c2aff44cab7493eb6dfc8b6c0b2054949b396b73b5d0186f0999ebcc', datetime.date(2024, 3, 28), 1, 'Movimento do Dia', 'BR', None, Decimal('90.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('a81c18ddf0a6032754c5361aedcd61895c7a1b6b0db6634f6b61fe1f102040a9', datetime.date(2024, 12, 16), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('264.51'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8278973aa691a3c362b9dd2ad0d42a20554599d83bb35972fb50a05ea2e166d', datetime.date(2024, 2, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a82a871f05dc62f53b13d07ffba512dd3f5ddbbd798de360d91df8c058d41522', datetime.date(2024, 1, 15), 2, 'SAMS BRASILIA', 'BR', Decimal('563.80'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('a82b765c9b8c8ca5ff686c952a291512145febc2974c6c06286b7aede6daedab', datetime.date(2024, 9, 29), 2, 'LATAM SITE SAO PAULO', 'BR', Decimal('82.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8429639d42b4edf4da1d82f93d2cb6db8df3621a2cbbf03243da7be6f6686ee', datetime.date(2024, 11, 27), 2, 'CAMINITO PARRILLA BRASILIA', 'BR', Decimal('40.09'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8435d066c8a8cbc66b7b5c30c231f3127d71f6078cd328b847a44c999ea4a09', datetime.date(2024, 12, 12), 2, 'ZP*FEDERAL GOURMET TRF BRASILIA', 'BR', Decimal('16.29'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8529b0cd9ca63afaec60e1570a2f637293f47345e37223e020a8355f74bf81d', datetime.date(2024, 2, 10), 2, 'MIAMI PRESENTES BRASILIA', 'BR', Decimal('106.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a86019674495f517bb0f2b6815e6920dbe8d4b5e3cd5274658bd2dee46f3d0dc', datetime.date(2024, 1, 20), 2, 'CHICO DISTRIBUIDORA BRASILIA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('a873af1623a7fc48d0bf6ca4b0e02081d54b846679c8d2637d4a0be893113abb', datetime.date(2024, 9, 25), 2, 'FONTE DE VIDA POLPA DE BRASILIA', 'BR', Decimal('122.95'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8884b8e9e8cc3641dd8c746cb96b3e4ffa68367cc73c0ddfcfdf86f5d50cd6c', datetime.date(2024, 12, 16), 2, 'DROGARIA SAO PAULO SA BRASILIA', 'BR', Decimal('17.58'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8a5538eab61e0a79924addfeb931d59a0e2167bc1d1ebc6544f4c511fbb033b', datetime.date(2024, 11, 3), 2, 'ifood *IFD*TT BRASIL Vila Yara Osa', 'BR', Decimal('99.70'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8c9d20604336b1dabd06fe009cd3e7fab26b5ed20641ea8e297b62c466ce4cc', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 07/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 7, 12, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a8faa6d1d0715ab606e09cf9cc05c9db42ee5e0873f1ca88e6afff8e53effd78', datetime.date(2024, 10, 26), 2, 'HAPPY HARRY 201 SUL BRASILIA', 'BR', Decimal('19.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('a910e641533ca89b2a271113f2fa2049f30ce4438a8dd53efa962f66924743b3', datetime.date(2024, 11, 20), 2, 'PRE HEROI COMERCIAL E SAO PAULO', 'BR', Decimal('100.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a91b7c5025aae3308a2c918a48d10fd75a1ed62413ffbeb3ac458e5e89e72dcf', datetime.date(2024, 2, 27), 2, 'PAG*DiogoLealPimenta BRASILIA', 'BR', Decimal('75.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a924250349bfabc0d66f48a1961097a446c76006e44ae162ab57185110beafab', datetime.date(2024, 3, 5), 1, 'Pix - Enviado', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('a93848ede37aff87c5b7319d502f8f6f0f8a1778c159877e1a6e2aa8177e10fc', datetime.date(2024, 9, 19), 1, 'Pix - Recebido - 19/09 13:49 00037320688115 ANATEIA DA', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('a96ad4502fc4a752a8b383b0099ec2de9ec61badc9dffaf6f70c444a6d1f3bc9', datetime.date(2024, 3, 29), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('a97ac0e347d0b85f464d7eb160169214e9129f209d812693e878951eefbaed4b', datetime.date(2024, 11, 25), 2, 'IFD*TAIKAN FAST SUSHI LBRASILIA', 'BR', Decimal('69.60'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('a9c4036a0ed843b19c92e47fad995719ed01e7869b71b7b9f63e6291db09898e', datetime.date(2024, 1, 26), 2, 'VISAO INSTITU PARC 04/05 BRASILIA', 'BR', Decimal('200.00'), Decimal('0.00'), 2, 4, 5, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('a9c62be998f3759b44b84d2a745fcda3eada340295276ba0ac8354cf0a261e25', datetime.date(2024, 11, 26), 1, 'Cobrança de I.O.F.', 'BR', Decimal('144.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('a9dde072b28a62d9522748757321bd9dd27b64e36ab88784fb88eb6c8c6ceca3', datetime.date(2024, 10, 21), 1, 'Pix - Enviado - 21/10 10:11 Daniel De Oliveira Carvalh', 'BR', Decimal('1000.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('a9e07f9b6da1e4b527f83fc1c195f7ce6356887caf470f82a6830709649cbcd9', datetime.date(2023, 12, 22), 2, 'MULTIPLAN BRASILIA', 'BR', Decimal('27.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('aa1f28460803c90420b59006ae1d13e7d02a1d67179e30e67a33915e8b16ce27', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 03/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 3, 12, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('aa482c52d8118336f29a6e10518ca5a601fc6a5403166aabbdb6ce2ec925f006', datetime.date(2024, 12, 9), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.12'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('aa49574f5c55d45277633be8c522aca186e7206cbfa0ca49ffdbd62bbb30d303', datetime.date(2024, 8, 31), 2, 'DROGARIA ORIGEM BRASILIA', 'BR', Decimal('46.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('aa6585086786b6229b0e03afb75b58e9ee083da6b4fedfae65606a57a0b047da', datetime.date(2024, 5, 14), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('269.57'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('aa7252a38badf416510d5b1bd4bc7842dcf710f991a02028d1e50e37cfaccbd5', datetime.date(2024, 1, 18), 2, 'MP*LOTERIASONLINEPDWW OSASCO', 'BR', Decimal('37.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('aa8c82c58f81b2369315f464f6ccca2a2e84184103bab4f3179dcca6725c325f', datetime.date(2024, 4, 30), 1, 'Movimento do Dia', 'BR', None, Decimal('90.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('aaa1f5c2d6d9e00fe343cb50ac8e41aa3fc5af44aa8fb5d2fc4bd7c624585446', datetime.date(2024, 5, 19), 2, 'BN COMERCIO E ENTRETEN BENTO GONCALV', 'BR', Decimal('120.00'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('aab432de565c71f16f1ad7f1d6ff1b3b5404009758c63c6d637e6659d859d31f', datetime.date(2024, 1, 17), 2, '365 CAFE BRASILIA', 'BR', Decimal('35.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('aabcd62c99160a47bf313611b2fe08672c06ea5d4994a89b54f241d7b2ae35cd', datetime.date(2024, 10, 11), 1, 'Compra de Ações', 'BR', Decimal('5031.25'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('aabea9e112f7117721df836d02ee94bd545c174a9bb1f196f85d54a0551712bd', datetime.date(2024, 11, 18), 1, 'Pix - Enviado - 16/11 13:59 Vibra Energia Sa', 'BR', Decimal('299.84'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('ab02fc31f8690cb191d7cad0453819c0876ed637c69bd969c0408eb6788ff64e', datetime.date(2024, 10, 15), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('85.87'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ab055578cc8b4641d45de9b8b3ccb72b7ab4d773a5ad76ecf7c03106756e5467', datetime.date(2024, 6, 11), 1, 'Pix - Enviado - 11/06 06:56 Utb Uniao Transporte Brasi', 'BR', Decimal('250.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('ab0d13ae4a54480dd3b2debc82dafac187de4ab8b9430926ff4511aa133acea5', datetime.date(2024, 8, 22), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('52.97'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('ab38bc32d88ad960f34bb2d497758833e5a166fe93fb2a9db9538267e93d21cd', datetime.date(2024, 11, 21), 1, 'Pix - Enviado - 20/11 11:16 Francisco De Assis Filho', 'BR', Decimal('190.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('ab3e1bd0d61c6474e7d1d672863b3f668e84862dd2319c357fbc30e6bdc38f75', datetime.date(2024, 9, 21), 2, 'Caio Vinicius Fernande Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('aba037ea90ba58b075e695e2a566e476cc60cbc8399d4ef043a52612fdd9bd64', datetime.date(2024, 11, 23), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('18.15'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('abafba71773c1d918b8eaa4752e01945424b3f722b65b9517720ccaf4bbc403b', datetime.date(2024, 5, 17), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('34.45'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('abb2e1ca9adca23435312b263835d479d00d2a4128ca1cecbe272867fe7a1ab7', datetime.date(2024, 1, 17), 1, 'Pix - Enviado', 'BR', Decimal('89.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('abc4943db5060d97137d03674910b308ef82d3f8416010b72ff248f2e729405c', datetime.date(2024, 1, 18), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('25.80'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('abc5df05af9ca57f6cc6f7661d76155ec2183e6dd574e681094adb1e2c9320ac', datetime.date(2024, 1, 5), 1, 'Pagamento de Impostos', 'BR', Decimal('471.20'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('abc95d0729ce7450610d9cf3623b67470417104023dc0fbabdd578f85dc7283e', datetime.date(2024, 5, 10), 2, 'CARREFOUR PSI 329 BRASILIA', 'BR', Decimal('221.69'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('abd5c5f737b9b2296eeb947c89ac0b2945e14cd7d40de4a02d1df540cc6421c3', datetime.date(2024, 10, 25), 2, 'Adailton Da Silva Oliv Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('abe394dd144b26c83dcf8b213c4fa4d2d7779c0de6d6b002c95f484e13a30f8e', datetime.date(2024, 12, 11), 1, 'Pix - Enviado - 11/12 15:38 Eline De Oliveira Dos Sant', 'BR', Decimal('135.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('abf4a07c1baca9ca60eaf0fe87f7a1fef05b1ac0782662c578942783cee0de7b', datetime.date(2024, 2, 7), 2, 'LATAM SITE SAO PAULO', 'BR', Decimal('1291.51'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('ac290348a25a08dd804a2d7e83fea5de4cbfa0c7f9f43d2d28306e2e777feee1', datetime.date(2024, 12, 1), 2, 'DROGASIL 2258 CAMPO GRANDE', 'BR', Decimal('89.93'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ac426035a01ed19897ff434cb7e93adee20f5f3234f85eef9bf90f26034e2748', datetime.date(2024, 10, 14), 1, 'Pix - Enviado - 14/10 08:13 Francina Noleto Aires', 'BR', Decimal('135.20'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ac68b7297e136eb925484e2416359c286577c310099728f5b141a09d16cebe9b', datetime.date(2024, 10, 18), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.57'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ac7206278aa5ae2a823f666e9d60bc19412e220c4a6d157170c0f0a9320f5f91', datetime.date(2024, 2, 7), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('ac80b7314975652b83cc1cf054a2b3cacc7a66952d73c654edd4056168d1ac57', datetime.date(2024, 9, 12), 2, 'Marchezinho RIO DE JANEIR', 'BR', Decimal('115.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('aca47fadfacc586679d1e30fe4e34f5eacad02ab754f3d5255cd21a5f44f5d04', datetime.date(2024, 11, 25), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('526.09'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('acddb80305acc4e1f678e0783e2e006b4f7c78b951c6a80eb9b93220bd0286f8', datetime.date(2024, 8, 3), 2, 'DULCE PATAGONIA BRASILIA', 'BR', Decimal('177.90'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('ace3da52b413982e40c1c91cf1ac6b0be8d629bad58578336fc423e77026a140', datetime.date(2024, 7, 9), 2, 'DELOV BRASILIA', 'BR', Decimal('586.50'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ad2ad48ddcaf0764a71107a7d6dfe8119c4c00d464f3e79b7b600e36a8a42bd3', datetime.date(2024, 2, 6), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('8.57'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('ad533fbcd0f82c115ef060c8cdac390bfe2430af241b34bf6c647a26c1e9baaf', datetime.date(2024, 6, 15), 2, 'MERCADO*INTERLEVELBR CAMPO LARGO', 'BR', Decimal('179.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ad5c26ea7ceb9e48b349a3d6b31c5c9c6b312add393d573cdf8d2381e294aafd', datetime.date(2024, 4, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('ad5c9f7be1eb3bb7001eb6be1c219a86f337890c4320b7547d3cb356ef1d4db6', datetime.date(2024, 6, 20), 1, 'Pix - Enviado - 20/06 21:39 Victor Alexandre De Olivei', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('adaca461f436088844f951dbb209ecebae370fce9a938109e541e05d4dc35e0a', datetime.date(2024, 1, 7), 2, 'PG *B4A GLAMB PARC 12/12 SAO PAULO', 'BR', Decimal('74.90'), Decimal('0.00'), 2, 12, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 1), None, None, None, None, None, None, None, None, None)\n", |
|
"('adde1a2fe210f36ea78dfabd1697a5874a27c15dcfe14262528e3036ccc61c12', datetime.date(2024, 6, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('17714.66'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ade199a2c7bd31d642e7917f9426dc4821bbea9f32629c5a65e2dadb721904de', datetime.date(2024, 3, 17), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('134.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('aded51138f49dbb36c898b08979e574818925956d824d77f134105a259a67b95', datetime.date(2024, 12, 11), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.00'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('adf9462ffd260f6c56a60f15218d9dd435f263f3f0d0fc2b401b7856b0a6d191', datetime.date(2024, 9, 14), 2, 'CARIOCA DA GEMA RIO DE JANEIR', 'BR', Decimal('35.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae11344475122cce6ebcf486e23bac186b732a8eab243882c5184bc5671bdead', datetime.date(2024, 1, 15), 1, 'Pix - Enviado', 'BR', Decimal('200.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae2a5ea2729dd8853c3d57667b06af5c62a7e810436ade1caac5e95903dbc8fa', datetime.date(2024, 2, 29), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.66'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae39818fd31fdc0aaa3a518a0252bb1b47ea5686944639c614dd6cd5634c072b', datetime.date(2024, 10, 5), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('225.21'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae4649235b81ee8b59efe4a1f990c4e8193f5079a4fd5fbb4f866725a3e6da06', datetime.date(2024, 3, 26), 2, 'BIOEXATA FARM PARC 03/03 BRASILIA', 'BR', Decimal('582.99'), Decimal('0.00'), 2, 3, 3, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae59e3c48c92b2ab16416e3df0d931fb612aecd60b3070d59bad766c537f17f5', datetime.date(2024, 6, 14), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('36.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae77acc7c9dbede6c36dc803a304c126ec8526dbb725d4bff02f7b356a9f9663', datetime.date(2024, 10, 21), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('17021.71'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ae971a2cf200b92603d8b41b62c5e704f154ebd4e4e091cdab72c45a217c2922', datetime.date(2024, 9, 25), 2, 'AMAFARMA BRASILIA', 'BR', Decimal('655.29'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('aed34e6091755632371013767f5e6e2f5c14617cdf5400ebbf0af399fdaf7733', datetime.date(2024, 1, 7), 2, 'PAG*Josealberto LUIS CORREIA', 'BR', Decimal('175.45'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('af4ec593873b9d005e9cc1314397ee64d4598d37eed8aa2dfc02f9e95b6d7a5a', datetime.date(2024, 6, 20), 2, 'MULTIPLAN BRASILIA', 'BR', Decimal('25.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('af55246fdb80ec14db7c03388fe254c2211933f9ad55e53a590c2f8185e9445f', datetime.date(2024, 5, 24), 1, 'Pix - Enviado - 24/05 09:42 Manoel Erivan Domingos Da', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('af828af54c2185bd215b9f9f83e7ac0be54168b21ae9e2087b5afbd2dcc925a1', datetime.date(2024, 3, 27), 1, 'Pix - Enviado', 'BR', Decimal('40.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('af8921194ed3010d489d8b552a316541d7e5daf31eb8c9ae4f12fde819238b6d', datetime.date(2024, 9, 27), 1, 'Pix - Enviado - 27/09 07:00 Cristina Aidamus De Lamoni', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('af8df5e1a39a9585e2ddd8335959982e8cfb9cf2b2b41904ac935abd44a8d93a', datetime.date(2024, 8, 30), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A', 'BR', Decimal('1351.62'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('af8e747d3466b692375ef47bf6ca416163faea7eff5c892999a06751ae383334', datetime.date(2024, 9, 17), 2, 'ADAMAH SPA BRASILIA', 'BR', Decimal('759.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('afa3cade628ea638c13ac8540b49b92c6ffd2479c48e83cc97843b03911302ba', datetime.date(2024, 1, 5), 1, 'Pagamento de Boleto', 'BR', Decimal('6401.93'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('afa9e07df0b538c2a7e67c968088e5d2c586d7792f898d3aaa7e0f766a72363f', datetime.date(2024, 1, 14), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('118.39'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('afabd0cd4785db18fce473b90972db302940805a14d7ebd563adefc0cc6a04fa', datetime.date(2024, 5, 21), 1, 'Recebimento de Proventos - JUSTICA FEDERAL DE PRIMEIRO GRAU NO', 'BR', None, Decimal('9994.82'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('afe3dbbf17f37efbddc8511b2b3f5fbfcd5b577094329093e1876a1123ee930f', datetime.date(2024, 1, 13), 2, 'PG *TON FLOR DA TERRA MONSENHOR GIL', 'BR', Decimal('280.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('aff649899a167133b0a2e7c7822f7798c8ca2ac2dda00c6e225daaab716a427a', datetime.date(2024, 10, 21), 1, 'Ordem Banc 12 Sec Tes Nac - 036585070001-25 SECRETARIA DO T.R.F.', 'BR', None, Decimal('2393.24'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b0057d6014e1bd77e7ce52b119a607462da55f669694d0038418c2078e3f6a6b', datetime.date(2024, 10, 18), 2, 'NAZO SUSHI BAR BRASILIA', 'BR', Decimal('728.22'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b047dee5fc548a5973053d7010a38a1cd5a7452077c55fe9ae5adadf1a7e549e', datetime.date(2024, 6, 11), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b0512a2a0887adf480c2303f2eea9a5288e951bb6c29bf859f2ec4c227439361', datetime.date(2024, 3, 26), 2, 'MP*DONAFUTRICA OSASCO', 'BR', Decimal('824.50'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('b07f5ca27a08da8cd08de16356375e255570ec7b4f2b72614dd7cd61769dfaa9', datetime.date(2024, 1, 23), 1, 'Pagto Energia Elétrica', 'BR', Decimal('414.13'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('b082ee364f73b476a3e0f4c8496e3fe6f2976c154a18e50abe9982a1f585e178', datetime.date(2024, 7, 15), 1, 'Pix - Enviado - 15/07 09:25 New Empar Empreendimentos', 'BR', Decimal('175.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b095d497b1ccaa412a08f86929fb9152ff02101c36c9b47ff743c7dd744837eb', datetime.date(2024, 7, 19), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('b0b323b35bb41731b1b327a7061dcfe058ae6e4a33e39e4e45ae04d9dc9c8da7', datetime.date(2024, 7, 3), 1, 'Pix - Enviado - 03/07 09:05 Helen Bruna Nascimento Far', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b0c69a1dea2df1c0ea4c7f6e64a8b040ade76b67e26fad16654a1c8cd427f14e', datetime.date(2024, 5, 17), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.84'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b10721357f3905bb250d01110280ddc128f12999d217dd269f691269d024a63b', datetime.date(2024, 10, 24), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('3343.93'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b113c63f4834bed18911e0a4ff30ce61d8e7f6b8fcbc56ee72c4eb424a57c256', datetime.date(2024, 10, 11), 1, 'Taxa Compra/Venda Ações', 'BR', Decimal('0.25'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b11d0658a6d3715ab8cf017b23ee9229e902242ed7d69e45a52ad609d3f2f09f', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 25/11 09:42 Au Au Que Visual Pet Shop', 'BR', Decimal('360.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('b12dce005124b6213e4383724495a0c7b0d4525baac9fb0f34d7db3796f7c536', datetime.date(2024, 9, 15), 2, 'VELOE BARUERI', 'BR', Decimal('66.26'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b13baa94a0dd35bd3dbcd50c98f8e46c9b4ef553bb7fc67163c45dc1f11c5dc2', datetime.date(2024, 10, 15), 2, 'GRUPO FARTURA DE HORTI BRASILIA', 'BR', Decimal('128.89'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b17f43a57ee2e915911acbf40aae07d52bb3a9573fe07820898b2d9f5e9a73ef', datetime.date(2024, 6, 8), 2, 'POSTO PETER PAN BRASILIA', 'BR', Decimal('251.82'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b1a975c04f8ba23ab4c289372c278106c571463fbba7abe164e3b4282682d289', datetime.date(2024, 9, 28), 2, 'MERCADOLIVRE*10PRODUTO NOVA SERRANA', 'BR', Decimal('99.89'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b2020c81dac4a09bac4179d1738432b03bd76f9148dd7c2db7f0a900a0e363b2', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 22:36 86985477100 ANDREA ZIMMERM', 'BR', None, Decimal('72.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b27df8d5e67f6ec86b0609cbed36e70ca3e7bca785a49a6c6701bc500181ca8b', datetime.date(2024, 5, 6), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('b28a575fd8c36ca57ee0f2c0741ad5d335a196d8589536c665b1041dda8633b1', datetime.date(2024, 2, 27), 1, 'Pix - Recebido', 'BR', None, Decimal('68.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('b2a1dc62fb6ad11b46487ba65aa8140a4cf08e200192b4240e0bd8d8fcbc4556', datetime.date(2024, 1, 28), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('87.50'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('b2c10fa08b69506b77b2458cc4b1a83b0aeb51214c840d064fba0380ecee6f9e', datetime.date(2024, 11, 1), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('236.25'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b2d99fbb344641b15fa9ee605b63eb6fa137ebf6a8324a3109568803dfcfa260', datetime.date(2024, 11, 11), 1, 'Pix - Enviado - 09/11 13:23 Loterias Caixa', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('b2e97483930b68019a6f30c359e3ddec7bd3ebd2209f09d1f50d85f72dceb671', datetime.date(2024, 8, 22), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('19.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('b32672a4d047c61a32534d5fe614b6e767f8a860fef20306e175cd45bfb0dc8b', datetime.date(2024, 1, 3), 1, 'Pix - Enviado', 'BR', Decimal('40.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('b34942569fa2419f43a316db0570464d442b78a253fecf17ce664c50310f8815', datetime.date(2024, 4, 8), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('1.29'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('b35404144c361529ebc65ddb5f8df58b9d5883da9e16e0e586597052a545ccaa', datetime.date(2024, 6, 13), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.96'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('b354547003a8fd48af53ece617bb030ca63e7693b6a0d354970c3787dfed8809', datetime.date(2024, 9, 29), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b360800c4a41ee5b5f857a48931f1167756c0860d5740af3efbca42c214d34dc', datetime.date(2024, 4, 15), 2, 'MURAKAMI BRASILIA', 'BR', Decimal('56.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b379b44d3e7f22425e227fae546e97414ba8c8028200ec095dc1d4d7297ba496', datetime.date(2024, 10, 10), 2, 'MAGIA DAS FLORES BRASILIA', 'BR', Decimal('51.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b39ee3ff38e6c11d22b8f98dd147e977afd767e44d911c58d4cdf7128cba66d7', datetime.date(2024, 6, 4), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('21.64'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b3abc58f51151ba37e28641bab5151736bfb2c810d2fce93b8d10e4e73468032', datetime.date(2024, 10, 19), 2, 'SHOPPING ENXOVAIS E UT BRASILIA', 'BR', Decimal('46.89'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b3b7d65f3898415ab9bb38f21cf36f0a3aec0befda78a6170b159926754cb641', datetime.date(2024, 12, 7), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('35.50'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('b3dd38967f3dac4d2d0c3f0a613d06bfee9cb141512a7611bc8ac249a48809d7', datetime.date(2024, 1, 15), 2, 'LDM PARC 03/04 BRASILIA', 'BR', Decimal('1100.00'), Decimal('0.00'), 2, 3, 4, None, datetime.datetime(2024, 12, 21, 15, 28), None, None, None, None, None, None, None, None, None)\n", |
|
"('b41485a2b17feb6b5f82ff6fa2c04384dd7c5f881dd66965b1fb0ca7fd8ac08c', datetime.date(2024, 8, 25), 2, 'IFD*Italo Monteiro MaiaOsasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('b43854978bf5340933abc6ec9493249ff2129a1ab21286c0d2f85e1467240826', datetime.date(2024, 3, 6), 1, 'Pix - Enviado', 'BR', Decimal('35.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('b4424b0b941bd9c2a9d08845b3e4f51827acd7b8cd82ddb013a3a80f3423b223', datetime.date(2024, 2, 8), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('36.23'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b44e8b85faf8e9f51c15aee5253d139bd5ab52944a72e4502c9c6f99a2654f75', datetime.date(2024, 1, 11), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.92'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('b45252493b3b289a224e6694fa5b3655023520142ed0ca67a5a75a86931808ae', datetime.date(2024, 7, 20), 2, 'COFFEE BIKE CAFES ESPECBRASILIA', 'BR', Decimal('10.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('b46d785a21f766c3d3e24816b49042777cbf101d91c2facb1eec4d34ed349795', datetime.date(2024, 12, 5), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('10.41'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('b484503820e979f90f8b8c266b8781a46887d19f904b93318763027846ae7f64', datetime.date(2024, 5, 15), 2, 'VELOE BARUERI', 'BR', Decimal('42.26'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b491afb58a048d459df83647e832e40a6f1329b19f0401e0f5322ee70123d3f0', datetime.date(2024, 3, 5), 2, 'IFD*TAIKAN FAST SUSHI LBRASILIA', 'BR', Decimal('161.80'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b499d7fce18de6734427fd5a8bbe1c777e94fef9cbf647e4dc6be842a69d142e', datetime.date(2024, 10, 25), 1, 'Transferência enviada - 25/10 11:28 CRISTINA B SILVA', 'BR', Decimal('1300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b4b2a7c242d5cb24d967155e3cd2f7f70c306abdafa97a716c7bdff243f0de41', datetime.date(2024, 4, 28), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b4e5cf4afaf86544d06ea51ed411d5cf0adf8784191185927a16b85a572c7265', datetime.date(2024, 1, 29), 2, 'JARUDE CAFE RIO BRANCO', 'BR', Decimal('191.18'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5063f438a6a71a119e84010ce0485e3eaeaace4a24bc32138743055561178ff', datetime.date(2024, 2, 25), 2, 'Nestle Brasil LTDA. Sao Paulo', 'BR', Decimal('310.80'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b513fe0fd2a9f71340ecc4fc0a30871d254fef6853196ce06556dbb8e3c6d07e', datetime.date(2024, 5, 27), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('2.27'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b53fc6c1aee61b49292c1c3177d93c86f06f7d816eae516e999b9a996463e59d', datetime.date(2024, 1, 28), 2, 'LIBANUS ASA SUL BRASILIA', 'BR', Decimal('231.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5760e2bde5c0cdc3d9dd887df6a79c99ce61bac98ef090d536ff827ad243285', datetime.date(2024, 6, 12), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.92'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5826bfbd7c97fcf5da5d3c2797aca8085c1098bc34e1d476c74b30d66b9438a', datetime.date(2023, 12, 19), 2, 'DO MAR RESTAURANTE SALVADOR', 'BR', Decimal('36.44'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5b2551f26dc4b822d5f6f0683bb4686b0afc6ae6a29470868f0aa3d5777e4d2', datetime.date(2024, 6, 27), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5d35ebabd7af4f3a0d5259ac64e7efa8a87978973a0f0044375c2947b8de643', datetime.date(2024, 6, 11), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('250.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5ddcbf8a5f483d9f8cb1b6a180f8d49d73044e62460ff77f460b3fc1a351ad1', datetime.date(2024, 7, 25), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('3.50'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('b5e7b933e8a20d7f467adfe80f89b422045946ecad239cbc852fcf5d22dd3e3c', datetime.date(2024, 12, 15), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('20.66'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b607f9eec74e9d64cd78fabb2617a2e82e7af637241b4ac17d69d79eb9633fa0', datetime.date(2024, 12, 3), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('7.91'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('b630b6af22e2dd4bc514764e9aad7e9c96000be82c1c9cad0d112a6f52521f06', datetime.date(2024, 9, 20), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('11986.60'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b675918205a9c9f8336ee418a90453eaef668fef3331e3fa1a738c42f7935614', datetime.date(2023, 12, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('11.97'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('b68249690668a4d9be52c8bd80ed099c77b9d5bb519c8e4cf0344b22aa2f8ba9', datetime.date(2024, 12, 4), 2, 'Jefferson Oliveira Sil Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('b6b14dbe9edb2a37690ce5882a27ab7f2a381b2bb244545e6fb2d06a655aaad0', datetime.date(2024, 12, 13), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('21.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b6c19bea6ce373b83e2898010329d6b352d366c2ebe7e12a89f8769ca192694b', datetime.date(2024, 5, 26), 2, 'MP*DESCARTAVEISJA OSASCO', 'BR', Decimal('87.30'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b6c9e9e9aecae1cd9e1bbed407cc7aba1cfa7162cf8cc0f3459e1e6e21dceb87', datetime.date(2024, 6, 24), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('9.86'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('b6f6397741f2426df9dd11ad12e5371684ea114d4bde22a3c5f7e6db4a2ce9ba', datetime.date(2024, 8, 23), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('451.19'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b6f6b49e2c2a5347c44c66b83428d019e9659ae8f9c360fa844237d8a5f0f44a', datetime.date(2024, 4, 25), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b7041f2e88660801893bce86eac422e7a902ac9651f2a8c060bbd81ec8859f94', datetime.date(2024, 11, 6), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('14.64'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b7101f0eb48e054ae87dce5571bf8a4fd45a3c3305889cd28da2d16dba032a81', datetime.date(2024, 1, 17), 2, 'Booking.com Brasil ServSao Paulo', 'BR', Decimal('538.20'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('b7273e089fb5c2ff54f697fa7ab5b4d6623706b9862c1d18b069f0ae39e5e347', datetime.date(2024, 9, 2), 1, 'Pix - Enviado - 31/08 09:31 Francina Noleto Aires', 'BR', Decimal('90.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b7287d751839d77f82a1d21cf4eddb09740f46a9fc5e68c7b26671544a892f5b', datetime.date(2024, 12, 15), 2, 'DROGARIA SAO PAULO SA BRASILIA', 'BR', Decimal('119.74'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b72dc8f7115c114ec674d4a0dff9bbe8b3be4a2b1e5472814f617eff39f01f81', datetime.date(2024, 2, 17), 2, 'BIOEXATA FARMACIA BRASILIA', 'BR', Decimal('459.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b72e390f3cb122687b5206f3b83ede00c0cf91948024dcb031f29ed7179e4d24', datetime.date(2024, 1, 10), 1, 'Pagamento de Boleto', 'BR', Decimal('2686.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('b7354a3b5f56889ff3a7cf9b4ddfed7e081961040dc37ff7b7323bc1ef4e506e', datetime.date(2024, 10, 24), 2, 'DIFF HOTEL RIO BRANCO', 'BR', Decimal('804.85'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b73d9f302a245fc6b6107641c0e43b538994e01fc295d7e94ff17485043ec142', datetime.date(2024, 11, 6), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('8.62'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b786ea2299d845dbefbf95d99192455d815177a1a9419af96dcf9bc659b647fe', datetime.date(2024, 7, 7), 2, 'IFD*WINDRSON ASSIS LANCBRASILIA', 'BR', Decimal('152.60'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('b7c990f1e233212390649e42e31bc5eb7b58e4b0420fa330f4c12ba36b72d89a', datetime.date(2024, 2, 5), 1, 'Pix - Enviado', 'BR', Decimal('21.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('b81c63cb6fbd9acbb04aef5153a4ce81b050059ca4532b783b4c435e5bc96b9b', datetime.date(2024, 3, 19), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('b84d95fbe8025836d519492d36210b7d965d09ad5feb3f2209b9d1a3d0c51af7', datetime.date(2024, 2, 18), 2, 'Privalia Servicos de InSAO PAULO', 'BR', Decimal('328.99'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b863eb73fcd5c43d8892705b6d193716adb48c7769c481575e163b7f4227a014', datetime.date(2024, 5, 12), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('127.64'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8753743ee87c843d0d22423b6e6fba1569b5b8651155a32f6c6f07bdd8e3a78', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 11/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 11, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 1), None, None, None, None, None, None, None, None, None)\n", |
|
"('b897f62cfba6a916f8c8bd4ddb1f50314d7ea61a2c8b63b1f4a48cc6acc03e53', datetime.date(2023, 12, 17), 2, 'ifood *RC MELO COMER Vila Yara Osa', 'BR', Decimal('123.11'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('b89f20f2da6be906e4de5bb8784015ae025813791b73ead1b5825785ab9584f4', datetime.date(2024, 6, 13), 2, 'MG LAVA JATO BRASILIA', 'BR', Decimal('70.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8a24f7ce29312aec51421156a3cbfe54ea9285112c4d7fcc66ea91d597d6286', datetime.date(2024, 10, 25), 2, 'MP*MELIMAIS OSASCO', 'BR', Decimal('27.99'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8aa31f28942761b081f517399fbc0c5fd7a7fbec6fe762fdfecae981a6d3e19', datetime.date(2024, 9, 29), 2, 'MERCADOLIVRE*JAEDSONDESOSASCO', 'BR', Decimal('109.35'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8b1ae217d27dddfc77f5d90a6a8030ca5c452a563e06f753dc2417202099a96', datetime.date(2024, 2, 27), 1, 'Pix - Enviado', 'BR', Decimal('190.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8c03c72ba4fbcd3182e75ce5e1cfd7be5610952e88e02288382334ca0019c5d', datetime.date(2024, 8, 21), 1, 'Pix - Enviado - 21/08 07:48 Bruno Dos Santos Rocha', 'BR', Decimal('187.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8d10da7e74e4a9c477d461eac08a8001c83e7805ec1e429c3f53c739099213a', datetime.date(2024, 1, 14), 2, 'IFD*WHURAN COMERCIAL DEBRASILIA', 'BR', Decimal('70.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('b8feb44c5ae3dd5f84557819c2bef28955cdc3df56680f32b0cf9e1038a041e3', datetime.date(2024, 3, 21), 1, 'Vivo Celular', 'BR', Decimal('240.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('b906aa85df5819e6f05786a6e8558a65d47c599ccbd3b71d40be0ca379653255', datetime.date(2024, 10, 4), 2, 'PICPAY Daniele Chave Sao Paulo', 'BR', Decimal('643.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('b93723310059614794ebdd9ad7466333a63887292517cf4b42330c5f262e7937', datetime.date(2024, 1, 17), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('b9b27060b2da0bc60a8b011e6d6ccfc415479183a68a599142f2a9845966a295', datetime.date(2024, 1, 1), 2, 'RESTAURANTE O GONZAGA LUIS CORREIA', 'BR', Decimal('187.40'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('b9be54790a7fba01898596d43ad28d0fd9757b2450a01ad069625a0bed1e3bb4', datetime.date(2024, 6, 13), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('14.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('b9c1b69ba1f0e944f8aab6405555913a4515d9bbc3faf9cc17aa3a62525ede29', datetime.date(2024, 5, 6), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.97'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('b9e151b1749fa5be1cfc573d564cce75b317bcaaff20e0684aa0db3415e7d9f3', datetime.date(2024, 1, 18), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('44.97'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('ba018a4cb3623d0883e941a050574a39adbe5a4e9d2bc7211f8a39e038a90951', datetime.date(2024, 6, 21), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('1328.10'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('ba642078d4e30d5566a18dd26fdf540d4b2f3c74efc446de79297d04c9d6f1da', datetime.date(2024, 11, 26), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('38.90'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ba79884937276500219d3fcf08bc1ff86e08a2e8fe6f329a9f8a3e7f165679bf', datetime.date(2024, 11, 11), 2, 'MERCADOLIVRE*BOAFORMASHOSASCO', 'BR', Decimal('164.95'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ba7aac89b94bbd4b32d7d8b70323b5a2a568b9880fc599d4d9e3bb668043caf4', datetime.date(2024, 2, 12), 2, 'SL CAFES DO BRASIL PRO VARZEA PAULIS', 'BR', Decimal('2.40'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ba8d2c891438d6c8a9efbbfb8276759f205f6649d991af92a3beab6831e4aa69', datetime.date(2024, 6, 16), 2, 'DL *SHEINCOM SAO PAULO', 'BR', Decimal('157.88'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('baa0266fbf666f80a9175a32bdf6bf0fafa990938c8d7a5d5783fc6b03427fa4', datetime.date(2024, 9, 11), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('900.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('bace0516e24aeceaf30600090c594b5ebd31595a21eb2bd7f3a03649cd6727c7', datetime.date(2024, 11, 26), 1, 'Pix - Enviado - 26/11 16:11 Cecilia Maria De Menezes E', 'BR', Decimal('80.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('bad42e5ee346629523ce05b5b16ec4932412e44c181d77d11597d1861cf09662', datetime.date(2024, 9, 25), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('bad8574a3c68d6993b9dba5e799be55a6eee59318e740c9679e9d3a40a74344b', datetime.date(2024, 4, 14), 2, 'SAMS CLUB BRASI 4929 BRASILIA', 'BR', Decimal('617.36'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('bb11685a26cf047e6771d9be3e2e3c8b30814c9dcce7aee555f5e2bd440999c6', datetime.date(2024, 5, 10), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('38.89'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('bb1867f6eb8adf2a1ab21e94a7674465553f09520c78fc3ba8d90e2a595718fe', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 07/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 7, 12, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('bb3501b615d32f5d0a777c4b03329d6f76ae1188124c2fe1c538d2c7f7d239eb', datetime.date(2024, 11, 27), 1, 'Cashback automático cc - Cashback Automático', 'BR', None, Decimal('185.45'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('bb4fb1cf1dd5dac59fca5fea2361f5afb97245f6938dbc2da59c95db00a09930', datetime.date(2023, 12, 26), 2, 'BLEND CACAO BRASILIA BRASILIA', 'BR', Decimal('111.10'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('bb73a6cea4461152567a8c5fb2cb857b283a2dd9cde2f23fbc789fff33c7e471', datetime.date(2024, 1, 11), 2, 'PG *TON MATHE PARC 02/02 TERESINA', 'BR', Decimal('291.00'), Decimal('0.00'), 2, 2, 2, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('bb928097b751bf2911cad06d49ec03bf9c534c47bb968de003c874e794efc944', datetime.date(2023, 12, 15), 2, 'PRIVALIA BRASIL S A SAO PAULO', 'BR', Decimal('171.57'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('bbd823d27b0b8c216d1c7236f0094fa8b127ef07ca31effa8743a580f9a25891', datetime.date(2024, 11, 1), 2, 'PG *POUSADA DOS PIRENE PIRENOPOLIS', 'BR', Decimal('1210.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('bbdfc355afba7f0b83a8fd23a58a311e422734ebda9418c07adc3d33796e40e9', datetime.date(2024, 8, 25), 2, 'IFD*MELO GONCALVES LTDAGOIANIA', 'BR', Decimal('118.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc1d4ece2ba650fe290bd0140e3cc6b8ad5c205fbad7d4f9c3c85e23d83b4e6f', datetime.date(2024, 5, 5), 2, 'IFD*UPTOWN BURGERS E SHBRASILIA', 'BR', Decimal('67.70'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc2fe94f364ecdc3e497ec499292e5abee4f089bbae0555f2c3eda103ae1a1c5', datetime.date(2023, 12, 28), 2, 'MR. JOHN BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc4c96dcd02b5ce26b8f104da88a8ec5bc6f99e9f6e0f0a23c7b8b2c36545324', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 03/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 3, 12, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc51d3df1e2d7fdb7188f36be9b078460d5f2ca612f3a2ff3752810a527d59a8', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 25/11 16:17 Maria De Fatima Ferreira F', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc6ae33c0ff5d251f71939996f57c3ffaacad26a5f99789cb5a8649cb3db68b5', datetime.date(2024, 4, 2), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('39.93'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc70d81c3d75a318628c4f162fc06ef7b9e38e8c386212a04943d29d9ca1991d', datetime.date(2024, 11, 22), 2, 'ifood *IFD*TT BRASIL Vila Yara Osa', 'BR', Decimal('114.70'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc74af935fbdab46ad669bf7ed8a2eb787811d47e09b2c80cf2f65fb5dc0925c', datetime.date(2024, 7, 18), 2, 'MERCADOLIVRE*3PRODUTOS OSASCO', 'BR', Decimal('362.28'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc767976e9babcfc305fbcf80c6fe8cd57a8a4d60e8b0fa0bb7e1cb2b8c22955', datetime.date(2024, 4, 6), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('16.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('bc9b7400c0fea18f61a4ba8661871cd4283fa7614418582a61008ad3c99dc04e', datetime.date(2024, 1, 2), 1, 'Pagamento de Boleto', 'BR', Decimal('1287.13'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('bca716ecc7519cda829ee7be2a33afa3118ddf8fd3343d74f4863ab71713e6fd', datetime.date(2024, 1, 14), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('142.50'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('bcb4e1c2b73a735cecbbc3fc45b05a5d914ce3941d9b1b3d11557f83bfc598cd', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 10/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 10, 10, None, datetime.datetime(2024, 10, 23, 12, 52, 53), None, None, None, None, None, None, None, None, None)\n", |
|
"('bcc0dd512c97e62d0382615b6b641bd2258f49f523a94c2ad86cb96c45ab47d1', datetime.date(2024, 4, 25), 1, 'Pagto cartão crédito', 'BR', Decimal('18362.96'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('bcf44b0d6303ee29d5cff2445fcb82221dcaeefc4ec53bd87745368c557aa06a', datetime.date(2024, 7, 10), 2, 'DA MARINO DF BRASILIA', 'BR', Decimal('478.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('bd62a1d993720cb69ffc71b11e562d748baae8253a2a2c384ffa6325797b33a7', datetime.date(2024, 10, 16), 1, 'Pix - Recebido - 16/10 06:36 00723454116 KARLA LUIZA RA', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('bd6e88005a015541fee176081e17051e4622abd86c45cdcc1432b2b6c677f5ed', datetime.date(2024, 3, 15), 2, 'BDH HOTELARIA MACAPA', 'BR', Decimal('72.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('bd70b3761e6abd37742ee8c66cdabe6e666f863d6299b6f725383320d29b2682', datetime.date(2024, 4, 25), 1, 'Pagamento de Telefone', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('bda353de2d91334c5cb11805c33e85a0793f2822acea67eaacaacb0711392ea8', datetime.date(2024, 4, 1), 1, 'Pix - Enviado', 'BR', Decimal('225.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('bddb35a2432b04b4ba72c648099828904ebd750fe52c744d044199c80eb1ef1b', datetime.date(2024, 11, 24), 2, 'IFD*MATHEUS ROCHA DE SOBRASILIA', 'BR', Decimal('90.47'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('bde3b0e20846fb726a43ffc5973d51acd679322e38deac2c0ed09947cb677266', datetime.date(2024, 10, 30), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A_1', 'BR', Decimal('1336.71'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('bdf6dc6e6d029c2c4c1678ff1ae6e4fac178baf186022b5501de983462500584', datetime.date(2024, 7, 24), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('101.89'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('be07fe7806d41280ce034fbfc3a4cac3d22b43173ae184102f0a037df158177c', datetime.date(2024, 7, 7), 2, 'IFD*Edson Murilo Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('be3268c006094c61ca3a900c20e1ce63da1005401bbb7855e8b2ecc7e1e06282', datetime.date(2024, 7, 2), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.93'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('be35dfe2906b5c5aadc5c4fdc8d84f115c4d1f4a85cbbfa0c922d59f738b8e7d', datetime.date(2024, 5, 2), 1, 'Pix - Enviado - 02/05 17:20 Rodrigo Lessa Leite 036128', 'BR', Decimal('286.35'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('be47740d5a8fb9ea6d15c0d77e7fba0c3c811a9f924a908038b61f91b2391e2f', datetime.date(2024, 11, 27), 2, 'MERCADOLIVRE*BLUEWHALECOSASCO', 'BR', Decimal('166.16'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('be6aa468049e86113c6aae0abaa2d27a636d53498d6978ea748f06d2633ee0aa', datetime.date(2024, 1, 8), 2, 'SORVETERIA ORA BOLAS CAJUEIRO DA P', 'BR', Decimal('64.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('be7db04b38b8854bbc3ed0ea33bba754cfdb0c0eab9e3eca8641f903dd9d9843', datetime.date(2024, 7, 9), 2, 'DROGASIL 1370 BRASILIA', 'BR', Decimal('191.56'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('be9cdd5bfe416fb6b304b4152d2d77c323046e4bedf2107daf297b4f589bd69d', datetime.date(2024, 7, 16), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.26'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('bea69d3e1cb70ab2510187fec5fb4942edcade220315995d9297ecc46af85347', datetime.date(2024, 11, 5), 1, 'Pix - Recebido - 05/11 16:24 00055384846100 MARIA APARE', 'BR', None, Decimal('135.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('beadd7775edf2492f4cc807befce7b1cbd7879075c9eb44255f255b53d192301', datetime.date(2024, 5, 27), 2, 'PARC=112 BRAS PARC 04/12 BRASILIA', 'BR', Decimal('452.00'), Decimal('0.00'), 1, 4, 12, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('beb1a0e0c8f8ff738642fbfcbe8db468b7dbe060a186c61818eed41b8dd03b9d', datetime.date(2024, 12, 5), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('77.10'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('beb66de03ba52e682a4b0563f2f0c2afbc612e7f27996071b962ddca99b988a8', datetime.date(2024, 2, 27), 1, 'Pix - Enviado', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf02d0b886bb7cd389190520ee8531fde0aced435e14f7b1a28a80434c8d219f', datetime.date(2024, 12, 20), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('12253.77'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf190badfb0c9a4de224f62ea3d54e94ffb440ad338b86a2a7c32e7ebb7a385f', datetime.date(2024, 7, 24), 2, 'BIOEXATA FARMACIA BRASILIA', 'BR', Decimal('73.70'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf19899578ec6448641f56a134c76defc97def8dd91734f348bc471ff57ad56b', datetime.date(2024, 2, 27), 2, 'MERCADOLIVRE*3PRODUTOS OSASCO', 'BR', Decimal('21.99'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf2a33f800d2b5673ff827ddc5aad9ac099da413eccd5525d8c51e6275f61d11', datetime.date(2024, 2, 18), 2, 'NETFLIX.COM SAO PAULO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf44faab882e7aae6d18aeb1b19c68ba40ad3bf618469d887d20a43ce3563502', datetime.date(2023, 12, 19), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('24.97'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf4c8203bf654d5d7e0df0c1c8584454ac23792b7b467ff95d2d1f2adff58a88', datetime.date(2024, 8, 1), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('54.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf51cdc021a59cf27c150080264f99eddbcb8e5d01c78810c24aeee326724e39', datetime.date(2024, 1, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('379.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf7a5a5db9a69336b72a527b43d68fdc3bf84d7fcc06743fedd02f36c2522c7f', datetime.date(2024, 8, 21), 2, 'MULTIPLAN BRASILIA', 'BR', Decimal('25.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf7bb466b2d0836387d21b82f8d86ebc4ea364aba2746434b504cae8d0281ab2', datetime.date(2024, 10, 4), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('48.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('bf863b9cd36dd8d34c193fed7aaa63c9a7e527c827ace8645c3f705e84bfcb40', datetime.date(2024, 2, 20), 1, 'Recebimento de Proventos', 'BR', None, Decimal('11737.71'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('bfbc3b1775a1eb6ad44adec50b68dd65081f715f3e913b004e25ff28949b52ab', datetime.date(2024, 5, 23), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('109.76'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('bfc3151d2249ef2b040801a20e7c90e513578ae5491217ee02b5bd95cbdac919', datetime.date(2024, 10, 12), 2, 'PRIME GLOBAL PAGAMENTO BRASILIA', 'BR', Decimal('410.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('bfc4c46aa21aeef3d35d8a71ee36531234b7f674ccd40f54290739fb94f690a9', datetime.date(2024, 6, 22), 2, 'DEPOSITO DE BEBIDAS PI BRASILIA', 'BR', Decimal('48.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c02730fa3cc92fa12662726c6f0bda954228c567ba40d7ff04ebb10debd81def', datetime.date(2024, 10, 16), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('786.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c02f7f9c39cece29fb942f4889280a3d73fa0474442b832f457eb4047b946ae1', datetime.date(2024, 12, 2), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('c04782d88c123f2e7b8773980d3d2281dd22c465d704c742bfaf17d82e21d3ee', datetime.date(2024, 1, 26), 2, 'LDM BRASILIA', 'BR', Decimal('70.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c061770de380f73aaf826222b179110320da4b5319cc9717845f4a29e98d5d81', datetime.date(2024, 8, 9), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('27.93'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('c0a2bef30f94ca033c8af4a3652225b0f6e45947a54c46e7ae96508869db22a7', datetime.date(2024, 7, 22), 1, 'Pix - Enviado - 20/07 17:12 Francisco Vieira Da Silva', 'BR', Decimal('600.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c0bdd05a9cd5bd2dfb0ab13b8922a946acf32a3a1b60f1f258cf5f0b3a2749d0', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 07/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 7, 12, None, datetime.datetime(2024, 10, 16, 11, 51, 57), None, None, None, None, None, None, None, None, None)\n", |
|
"('c0d5b263deea98f8e0c85f2b9ff011bb094a30ed227e5b7328a4cad86419d026', datetime.date(2024, 12, 10), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c10ebea52325d1ef1868d500e3b20920f5e945baa6ba1a468bb47fb43d33148b', datetime.date(2024, 2, 26), 1, 'Pagamento de Telefone', 'BR', Decimal('110.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('c145ad09396cb551a3ae6d3ef911e388629e1d8c787de4e327650776362798fb', datetime.date(2024, 8, 14), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.26'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('c154474ce2ebd1f860ea9e1c40df823d41369aae04bbb2de0f439fd7caccec02', datetime.date(2024, 9, 21), 2, 'CR EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c154668a21055c06c6dd275d5da8d9f72833c141f7d390d4b35064f3b9d5f6f0', datetime.date(2024, 11, 25), 2, 'MERCADOLIVRE*TORCARAUTOOSASCO', 'BR', Decimal('49.79'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('c15b430a2696cd61f0c72020703258b19d932f9f2616c611e9b50bb936076464', datetime.date(2024, 12, 9), 1, 'Pix - Enviado - 08/12 19:58 Helen Bruna Nascimento Far', 'BR', Decimal('1000.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c181fd571c8390c8ef268bd6b446b649f1128e3cd6902d79d01335dda8d938c8', datetime.date(2024, 6, 27), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c18bbbf7fe4f2effaa80db40446ba33cec94cc672b473adcba01c7b0f1498189', datetime.date(2024, 9, 11), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('72.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c190f6c6841bc88df4b919323783dd8bb9d7d79eb20f66d444a3ce6d99658cee', datetime.date(2024, 8, 26), 1, 'Pix - Enviado - 26/08 13:28 Chb Centro H Brasilia Ltda', 'BR', Decimal('400.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c1953716fa130dcdae3433cf95e6dd60f2b58311d50c4dd39d912d3eb26e3503', datetime.date(2024, 10, 8), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('122.79'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c1a975bdd0b81d677cfe4b5df03502ad01fc4aa9f4c2ceea48d1af01f22ebd1b', datetime.date(2024, 8, 23), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('8.93'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('c1aa20596e120b1ef5fab4a032c08aabe79e034a635a6246cd27d9b3203b79db', datetime.date(2024, 8, 22), 1, 'Pix - Enviado - 22/08 19:53 Vibra Energia Sa', 'BR', Decimal('261.78'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c22c05bad744b53c3c83afb2121ba87bf52b275e7dcd0b082c41db67c9ba9247', datetime.date(2024, 8, 15), 2, 'UBER* ONE OSASCO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('c22e72b3f08249120aedc98195af120b57627b9908ced2cd9bcdd2202abc78c5', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 10:59 Utb Uniao Transporte Brasi', 'BR', Decimal('300.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c26f9e6bcab59ee4abdd9923822f2cb0c88271cefa518e29116ffaabc376e4c2', datetime.date(2024, 6, 10), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('114.84'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('c27dd2acbc58180e02ecc5e2660e42f43989e3c54433aa86026c2a471976b11d', datetime.date(2024, 3, 18), 2, 'FEDERAL GOURMET BRASILIA', 'BR', Decimal('22.56'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('c2aaebd51c01851865e913936eeda60b7a4ecec7f2d2c8e4fcbb02ffe88ed36a', datetime.date(2024, 2, 8), 2, 'TOKYO CASA E CONSTRUCA BRASILIA', 'BR', Decimal('78.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c2cb32e7a0213aa42ecfbadaa8fe4241957285d398cd7343e3a543ca431b5fcc', datetime.date(2024, 6, 6), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('9.98'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('c2cb7be754b29f062d4d71720b28da71527b221bc25f53948106a5696a671f53', datetime.date(2024, 7, 1), 1, 'Pix - Enviado - 30/06 11:58 Denise Gomes De Moura', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c2d12295c085c79e1c5e43a19224a81eaee877f67b6a9fb95b1920a8b43e061a', datetime.date(2024, 1, 2), 1, 'Pix - Enviado', 'BR', Decimal('30.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('c2dec8eec9dcdc5c9c9902527c37a206650e421b593e8fd5c16da087fb6034d5', datetime.date(2024, 4, 2), 1, 'Pix - Enviado', 'BR', Decimal('90.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c2f740c19fcc377bbf2c295b5d056b606f8249c3b32f38a62471b9b9a138e888', datetime.date(2024, 10, 9), 1, 'Pix - Enviado - 09/10 15:09 Vibra Energia Sa', 'BR', Decimal('233.90'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c3007e2e1ae6c7369b075e580d35fe5fff3b696c687e3b5168637407e0ac471a', datetime.date(2024, 10, 1), 2, 'DUTY PAID BRASILIA BRASILIA', 'BR', Decimal('109.80'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c309f6cd6cb53b5ba4dbb2cd52d883a3314724d5cb094b2e82028e6f59840984', datetime.date(2024, 4, 29), 1, 'Cashback automático', 'BR', None, Decimal('183.58'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c35fd675f1d4f80426999f144ff4073067e3e792e2c07bd123856fb68ef3fcf3', datetime.date(2024, 5, 20), 1, 'Pix - Enviado - 20/05 08:56 Jose Reinaldo Da Silva', 'BR', Decimal('214.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c371dc795053eb028f461504c931608b0bda49831a3e58af6415884a7c1c6cc4', datetime.date(2024, 5, 4), 2, 'LIBANUS ASA SUL BRASILIA', 'BR', Decimal('233.42'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('c38c8e3da93c9df19ff9ccdf98965ffda3029781b88561555ac83bd4c258a8f5', datetime.date(2024, 10, 6), 2, 'Luiz Ferreira De Franc Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c3ae54c0e8c033d76756a5c0c85b28c5cd8184880b7d721833b19e52b775ad12', datetime.date(2024, 6, 11), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('c3c3f7c95fcfa0a60b6402aa842f410f80b55d3cdd6f96d3ab4d2386d147636d', datetime.date(2024, 6, 29), 2, 'MP*CHURROS OSASCO', 'BR', Decimal('15.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c437e82127ffe4e9e4b957d6bbd1bc9b069c3f6d01ad9f79dd6cb906e40202c9', datetime.date(2024, 3, 5), 1, 'Pix - Enviado', 'BR', Decimal('23.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c485054735c9a1cb2db1cb2c7adb92c62e396048c091aea9823c528d671c53b2', datetime.date(2024, 11, 21), 1, 'Pix - Enviado - 20/11 11:29 Avelice Pereira De Andrade', 'BR', Decimal('6.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('c486bfadf3c895e7db7b807749e445d2fae89c57a3f8b040342be350e9aebc3f', datetime.date(2024, 3, 12), 1, 'Pix - Enviado', 'BR', Decimal('90.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c4d689a72694b7684eadb45d6ba99597ea74dbb8f051e41c1df0c2d3521d0da0', datetime.date(2024, 7, 22), 2, 'MERCADOLIVRE*MERCADOLIVOSASCO', 'BR', Decimal('444.40'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('c4dc474b6b45f869a3bc7705bb1729559d8b255f1d6a8e3d13a2fe352cf81ac2', datetime.date(2024, 3, 15), 1, 'Pix - Enviado', 'BR', Decimal('800.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c4e0a4a8ec8e64095ca4bf3a82aabfdd70ab6c8199c5679dcaebcda4805fb609', datetime.date(2024, 6, 25), 2, 'BOTECO CAJU LIMAO BRASILIA', 'BR', Decimal('54.54'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c4f2d8529eecf430f6aa309c56bd9089a074a617349a1002c51a0741732bfd4c', datetime.date(2024, 6, 30), 2, 'PAG*AnaLuciaMartins BRASILIA', 'BR', Decimal('95.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c4f8e9f2bcfbc533f4c48ecec66f16a1a013f2a23be2cf734e5436415e877c66', datetime.date(2024, 3, 19), 2, 'IFD*TAIKAN FAST SUSHI LBRASILIA', 'BR', Decimal('149.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('c528a74d62074e41771bc0d1768049aaef0e8c35e4f389a30483648aa1736dce', datetime.date(2024, 11, 1), 1, 'Pix - Enviado - 01/11 11:10 Utb Uniao Transporte Brasi', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('c53e341cbf4ab15626e0a6ffd4efa8b3f388733da0ca3cbd1011da5ee16837c1', datetime.date(2024, 6, 10), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c54f0784064bf96f98ec6fbf29bb0aca49fba05c90b00afae69f5b13c841e7b0', datetime.date(2024, 1, 8), 2, 'BGK POUSADA CAJUEIRO DA P', 'BR', Decimal('172.90'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('c5c81eded8dc9da26dd9be561e2b2a97766117f17a3d157006ed464aa5e93e6d', datetime.date(2024, 7, 8), 2, 'DROGARIA ALAMEDA LTDA BRASILIA', 'BR', Decimal('377.75'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c5eb436746838affa62682de778203801176163fff2593ca26d52c2a9cd774cc', datetime.date(2024, 6, 28), 2, 'CHEIRIN BAO BRASILIA', 'BR', Decimal('8.90'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6017a45278f18e22d5a39b477f20d447cb6f2ed4239b678950f0ccf06c624e6', datetime.date(2024, 7, 5), 1, 'Pix - Enviado - 05/07 08:32 Maria Cecilia G R Ventura', 'BR', Decimal('80.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6027867d9101a6f1f68e8eee13549dcc76aca0c053869b1fb82bbf62603fb18', datetime.date(2024, 1, 18), 2, 'MIAMI PRESENTES BRASILIA', 'BR', Decimal('48.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c62e7f9d400449d06b398f5a7487b0f4a91fcac6b30f5638a07501bf8a928bbd', datetime.date(2024, 10, 28), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('6.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('c63ce1b6eddd491c7cb36f50296e2a2eb94411fe9f575278bbb5b71bb4261c53', datetime.date(2024, 9, 23), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('421.92'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6561fbe62e5f292aff8de1bc9ab716c34652c3b12c5394ffef26b0ad7c3df0e', datetime.date(2024, 3, 16), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('c663edf6a93aa0abcf37ac21b342695ec938a1d9fdc5aa43fda30a2c9233269a', datetime.date(2024, 11, 9), 2, 'Renato Gomes Da Silva Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('c688f678ca1f4da64b65f56a44ce3132a4519abc3b144f0edd095168aa5f1e7c', datetime.date(2024, 9, 14), 2, 'HAPPY HARRY 201 SUL BRASILIA', 'BR', Decimal('90.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c68a5f07569cfef11d6daa1ea43cdca27c042c7d92682caad763995a7c87c095', datetime.date(2024, 3, 10), 2, 'BAGAGGIO 77 BAG BRASIL BRASILIA', 'BR', Decimal('59.90'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6b0d96f7b7beb2416ba4825ec62385ddcec1c8ef04d41c14688a91841c3ef10', datetime.date(2024, 1, 15), 2, 'POSTO PETER PAN BRASILIA', 'BR', Decimal('299.92'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6c5744fa189ced8fc356755d326eb3f4e0236e96c8eb74a279addcb969636fe', datetime.date(2024, 12, 11), 2, 'CthcGelateria SAO PAULO', 'BR', Decimal('80.00'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6c93bcf96a69f46bab1b21aa92844b973586048fdea0f30a47057c302215cf7', datetime.date(2024, 12, 19), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('65.00'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6d07599ff77418e1cbb799a60c17bc494e578d4dad2edbc4433f2431af571b0', datetime.date(2024, 11, 12), 2, 'SAMS BRASILIA', 'BR', Decimal('75.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6daad774e2145f9ca342e6186afd43d3b719110c993d62cc322f101aae85a46', datetime.date(2024, 5, 5), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6e23daabb0aa9eca894f2a2a7d0a4917c13d3b7139034c5cbc09f1eef839b95', datetime.date(2024, 1, 17), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('14.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6e688485074f00b800384399e25c9b780e83dfb16308be286fe75bb7852d0c3', datetime.date(2024, 11, 23), 2, 'PRIME GLOBAL PAGAMENTO BRASILIA', 'BR', Decimal('90.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6eadaa41952283cd5d46801ea64cf122f56923ce5cae913eba8b4f9da25c389', datetime.date(2024, 2, 29), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.92'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('c6ec114901dec4c3f55f39e555cb49b8e2968ab2d10fdea122f8ea21bb7f0d58', datetime.date(2024, 2, 8), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('35.11'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c7314e167427bbe4c9f2ebf6f11ee3ac982efdcc96e7d8e49a83c2a884bd9529', datetime.date(2024, 2, 28), 1, 'Cashback automático', 'BR', None, Decimal('208.73'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('c73f7b7e2d503a7a499301605e964cec0299ca0c3328a9201b4937745846aa57', datetime.date(2024, 8, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('c7402b9b787f4274a2c970c64d39b9530fe5800bb56894bfd777e0f0e8931712', datetime.date(2024, 2, 6), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('317.40'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c74eb2541f61c39c663397b71885796a6a474aee65ed9b7ab46d0b12fa353312', datetime.date(2024, 10, 4), 1, 'Pix - Enviado - 04/10 12:01 Gerfeson Freitas De Jesus', 'BR', Decimal('60.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c76e2c28d8b625b23779306d96230c273dea8a1698e6bc5f8a61869f4f8d3b17', datetime.date(2024, 11, 22), 2, 'PARC=105LISTO PARC 01/05 BRASILIA', 'BR', Decimal('860.00'), Decimal('0.00'), 2, 1, 5, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('c7ad3494231a6edbd8b4967508f37c23ae7a7a5021209aeeb9d954d90c3ec71c', datetime.date(2024, 4, 4), 2, 'IFD*TAIKAN FAST SUSHI LBRASILIA', 'BR', Decimal('149.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('c7c5fe74516010b719a32f084f996102dfabf6264064aef8d23e6c0532017bbf', datetime.date(2024, 9, 29), 2, 'DISTRIBUIDORA BRASILIA', 'BR', Decimal('42.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('c83ed31ba602728ca2aa0734906457a0ab78b4197782849f966b0c85114f8420', datetime.date(2024, 10, 25), 2, 'FRANPESO GAS BRASILIA', 'BR', Decimal('135.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8639b60a9e6e74f4bcac2dbaccb2c3d397f2fc9c7efcabef843b8d5e81e05d5', datetime.date(2024, 3, 21), 1, 'Recebimento de Proventos', 'BR', None, Decimal('9924.70'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c867ebd115487e3909abd451645a9ab98fea8b0fff3824fa4da07d9e04d44566', datetime.date(2024, 3, 27), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('c867f666ea034d5e2f312479bb29c5df1e3f474fd3335bfe8e39c6bdd87de3f5', datetime.date(2024, 1, 31), 2, 'OUTBACK BRASILIA PIER BRASILIA', 'BR', Decimal('162.06'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8960859ec3d8888551550e8e78b12bac8b3eaa17aa1801f88189947b1329e3f', datetime.date(2024, 4, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('10057.64'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8a4e422a04a5323a7fc1748e64cf55f56d94a4191ab12a271cf65965b0e5e32', datetime.date(2024, 7, 27), 2, 'Wellhub Gympass BR GympSao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8a89d31558f8d5eb78d6ddf74a400843fb1cf789198ed0620227db64c6815af', datetime.date(2024, 1, 3), 1, 'Pix - Enviado', 'BR', Decimal('100.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8c5cb81713253235f0d1aaafa697580a9d02d0be049cdd5aadf78a2fc626edb', datetime.date(2024, 1, 26), 2, 'POWER LADY FIT GOIANIA', 'BR', Decimal('389.70'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8d0f3c39878f42d5d0e2ec601d12122c208c3a5ec3daa333447d970cb7aa4db', datetime.date(2024, 12, 9), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('11.64'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8d5f498dabd412583681c8af6f5da5fba2a317a5e009f6a97310ef3c8d98dd7', datetime.date(2024, 10, 12), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('122.08'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('c8d5fe363bef5a08ad66b7978cefd04f3ef7c566fd865b2cd4deb7db5df1eedd', datetime.date(2024, 7, 22), 2, 'MURAKAMI BRASILIA', 'BR', Decimal('55.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('c912c789cf977fa8199e8782b20fc843c0b02f05bbee8fe403e6d37e35272d9d', datetime.date(2024, 1, 15), 2, 'LDM PARC 04/04 BRASILIA', 'BR', Decimal('1100.00'), Decimal('0.00'), 2, 4, 4, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('c9a85b1ac3cc2bd17ce0205429a9f0c2feeaf04d8ec4c8915b1c29a4def3aee0', datetime.date(2024, 11, 21), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('c9ab0c404f84053a2a4f3901f28ddd6978cc6dabf85d67103ba7d25ef391383f', datetime.date(2023, 12, 12), 2, 'DF GUARA 3 BRASILIA', 'BR', Decimal('150.10'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('c9b6f4ddbe7cbe21738e07a9b73936ad88572e570508d00bd478beff320284ff', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 11:37 Jose Raimundo Da Mata Neri', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('c9f2f25cef612d958aafdeb947b72295886efdfa4d3613ac23d6e9fcbfc07067', datetime.date(2024, 8, 30), 1, 'Saldo Anterior', 'BR', None, Decimal('2004.28'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca1199c6aea39ac8d62cd3ffe1d1e6bd8b9a787222a859c5ebf8ca0fecdd1005', datetime.date(2024, 5, 28), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('38.90'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca1aa814f64e8ed232f2268a2e99d6ced0e6b2b12c3c2f7fe595bfa9e33efd7c', datetime.date(2024, 2, 8), 1, 'Pix - Enviado', 'BR', Decimal('380.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca256243a25d31493ec0215074c81e48c24bd3ef67d73d83a996ab7b9e95f5de', datetime.date(2024, 12, 5), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca2b4a25fbb4b49b8c3218f907bdb58af8dcc64a4b0fa1c031b553819214de9c', datetime.date(2024, 2, 27), 1, 'Pix - Enviado', 'BR', Decimal('46.20'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca2ca81cd820238265212e33b60806343ac6fdb26d5da15fdfcd7f93bf0f074e', datetime.date(2024, 10, 20), 2, 'APP *LOVEBOUTIQUE Sao Paulo', 'BR', Decimal('299.80'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca3c6541fe94e6cf1635f53a1f8a63b1503ba727b0dc65e4df629c00a82ea20c', datetime.date(2024, 10, 23), 1, 'Pix - Enviado - 23/10 15:37 Loterias Caixa', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca98825549c66b76892ea2bb8242c59d1359e6d9f52df85cf379d5d393284a6c', datetime.date(2024, 2, 29), 2, 'SMP*SAVEUR BISTROT Brasilia', 'BR', Decimal('411.09'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ca98d54d1b652420da86588231bb62737a495352512925bb1aacaa4850c1b51c', datetime.date(2024, 12, 2), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A_1', 'BR', Decimal('1374.47'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('caade3af847a0d86cfb76a676416f34b072362c43f4eeb0ef3762b3fd243fcc8', datetime.date(2024, 12, 1), 2, 'MF CG RESTAURANTE CAMPO GRANDE', 'BR', Decimal('62.72'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('caee6c5c36b1954a1af962ff8d09f8955240c754c1b94ed22b31ee8f7ab14cc0', datetime.date(2024, 4, 21), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('198.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('caf5ca6b1048057779da284e362159f9af46b0713b4cd5ff29dbd8362d0e689c', datetime.date(2024, 12, 17), 2, 'GRUPO FARTURA DE HORTI BRASILIA', 'BR', Decimal('189.93'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('cb12f6945697fb064e53fc8924c2ccd8258aa3e2efd9f60b1a88e5ea6bdc9ad1', datetime.date(2024, 2, 28), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('cb3b47898c971d8514c7b5e7a2144f181ccc07e5c5dd2fc8681771984637ad75', datetime.date(2024, 6, 19), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('120.75'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('cb4cc1fca4141f0ed6d5fff8484720d8646321802876ef5419fa293897003d86', datetime.date(2024, 9, 14), 2, 'HOTEL REGINA RIO DE JANEIR', 'BR', Decimal('24.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('cb6489aaf95855c1330de7aece0438ab6970f8dcd871752b23cd3788d02a3afb', datetime.date(2024, 4, 2), 1, 'Pix - Enviado', 'BR', Decimal('92.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('cc2b6059eaf56aca9e12a14cf5e4661b6aaf32978a387d1b6fe74e545375ea13', datetime.date(2024, 11, 24), 2, 'Evando Martins Da Silv Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('cc6a97300678d5199f8a7ee562410cdc7981454e66c832828ab98edd69df0161', datetime.date(2024, 6, 26), 2, 'CARREFOUR PSI 329 BRASILIA', 'BR', Decimal('208.18'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('cc9f90095dcfeb7273e3ea76267aad8e1204b031fa8c91dedc03abd068e50989', datetime.date(2024, 5, 15), 2, 'MP*MAGESTORE OSASCO', 'BR', Decimal('89.22'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('ccb1f9eae1e20d1daf1e8d88bd864b19e573d23dc5ca77fca6fc56152f08649c', datetime.date(2024, 4, 19), 2, 'REDE HORTI MAIS BRASILIA', 'BR', Decimal('68.64'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ccdc4e137f3008da3ca5d0a5af4cc7c26b157a6c729c26cbff0734092301cf71', datetime.date(2024, 10, 24), 2, 'RESTAURANTE PAO DE QUE RIO BRANCO', 'BR', Decimal('81.03'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('cd08678f3113de654892591a005510e50f2b1786d8e51dcce495b38bcf9aa01a', datetime.date(2024, 5, 24), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.92'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('cd2c6c7974a674e26addb7fd21186651caa9882aaf6e4af12886a3f223093ddb', datetime.date(2024, 8, 30), 1, 'Ações - Proventos - Pag Jur Cap Pro BBAS3 30/08/2024', 'BR', None, Decimal('53.46'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('cd76afe335f1a97fd74f51279c59d072136bf249d88eb7e84e5f34515bf53fc2', datetime.date(2024, 8, 26), 1, 'Pix - Enviado - 24/08 11:02 Detran Df', 'BR', Decimal('104.13'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ce003e506c8d4adcb688aeb48483f928ae9a0992f58cb0ca85395933ad031168', datetime.date(2024, 2, 27), 2, 'MERCADOLIVRE*3PRODUTOS OSASCO', 'BR', Decimal('252.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ce396542a6b67d753ba92447ed4406622baba6a082d10f188f8ce7e7aff6ecbf', datetime.date(2024, 11, 18), 2, 'PB*FEET TOMORROW PORTO ALEGRE', 'BR', Decimal('499.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ce57242f2fc71ab4d647aa1a6dd576655a6d742f11061fe06d9ac2f7a36ff778', datetime.date(2024, 1, 6), 2, 'MERCADOLIVRE*2PRODUTOS OSASCO', 'BR', Decimal('34.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('ce5e0f76647adb7dd954961b59d7989e26799053b04f80fb8383d18712a13faa', datetime.date(2024, 11, 8), 1, 'Pix - Enviado - 08/11 12:50 Liiv Pharma', 'BR', Decimal('96.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('ce7f949b7652fd99fa106b7e685fabca9a07758909d6328f5e9415c56e185e76', datetime.date(2024, 1, 27), 2, 'CAPITAL BISTRO BRASILIA', 'BR', Decimal('66.73'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('ce9820ffcac623faf00925de65ff06bcebe114850233dc7c0e5be57f29a65515', datetime.date(2024, 11, 19), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('28.99'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf0a0cf23708e9ed2ac34a8bfa8089b0af37c723950d86eaef1e9e91673c3bdc', datetime.date(2024, 12, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf3a61d88c5e179dce476fbae1bbde928cad7315d3b14e4f02ad574f87107af1', datetime.date(2024, 11, 21), 1, 'Compra com Cartão - 20/11 11:24 UNIVERSIDADE DO PAST', 'BR', Decimal('32.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf3b248b3e7d0f1822d5c2412f020d282b74af792bf60f2f512138c66f4760b1', datetime.date(2024, 5, 26), 2, 'IFD*RICCO BURGER COMERCBRASILIA', 'BR', Decimal('99.79'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf6333be163fa45c3fdbc81ae54b090265e863bfaef88ed74bda4086d6a484f2', datetime.date(2024, 12, 2), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('7.35'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf6cfbeed8cf93376e9a2135e64df8f98bdfbbdc419387186c346f267f193653', datetime.date(2024, 10, 16), 1, 'Pix - Recebido - 16/10 07:28 03483820140 DEBORAH CARVAL', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf7862fa737f3d553dfdce10478316f9933680967c5d5b7a448311e8d09b69a5', datetime.date(2024, 2, 8), 2, 'MR. JOHN BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf7eca4e23926e2c002ce7995df7ad0cdb707ab3d5c40a15573f413fdcdfd664', datetime.date(2024, 8, 10), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('13.97'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('cf8c3b80c890f95941a41c50bddc1492effd2ba8ef9ba0e8aae99bfc13fe7493', datetime.date(2024, 6, 17), 1, 'Pix - Recebido - 17/06 06:39 00091116546434 VESCIJUDITH', 'BR', None, Decimal('250.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d017c4fc071c3989c5c794a21b244ae8be98dec801da26cca52b5e816b3081d1', datetime.date(2024, 7, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('d0ce3f2990a836a7394a1d32f8af378b053f13baf7a149f3e2a3617753d6dcdd', datetime.date(2024, 11, 12), 2, 'GRUPO FARTURA DE HORTI BRASILIA', 'BR', Decimal('109.68'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d0d52723af748268fc097bf955f04d6c82b75112f69f62bdd332e047fcc4df0d', datetime.date(2024, 11, 30), 2, 'CK SAUDE BRASILIA', 'BR', Decimal('231.48'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d0f50e075998dfafc2c315cff6da05f065bff447d145d98bad786a4aeaace15a', datetime.date(2024, 4, 12), 2, 'LISTO*CLINICA PARC 04/04 BRASILIA', 'BR', Decimal('2000.00'), Decimal('0.00'), 2, 4, 4, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('d0f72d3fdc1f1cc214ed7930142cb94176edd46d94b0a39f89d0ff10562b73df', datetime.date(2024, 11, 3), 2, 'Gabriel Lopes Pereira Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d1062925a57a1ab294c315ad62a13d3965d61fe1e138c39540a5b07d8c380295', datetime.date(2023, 12, 30), 2, 'JOAO JOSE CASTRO DE S CAMPO MAIOR', 'BR', Decimal('153.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d13bd462d9e1b14764d5436c7aea3d6867fc7751f5fe25a3268d04c1009a48e4', datetime.date(2024, 4, 14), 2, 'IFD*GRAN LOG EXPRESS Osasco', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d1506cab864d15ad622975632c0a943fbefe47dd4612b42878af81cbae68f23b', datetime.date(2024, 8, 21), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('8.50'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('d194d190394fdb88204d5e6c4f0fee217b908f67aab47224279d48005d5b6ec2', datetime.date(2024, 11, 6), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d1a639627ee38469c2b02f1d7df9c93c8db5736bd6ad1b22c072d3c24319856d', datetime.date(2024, 4, 25), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('18362.96'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d1bf7b6cea5eca7e96bd511acd68d0b8cc529b33c6502e78c64532a394abf2be', datetime.date(2024, 2, 22), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.96'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d1f720c73ddebe41289acd5ce08663fb78f25387921e971db45c6bb6f5eea478', datetime.date(2024, 5, 30), 2, 'MERCADOLIVRE*MERCADOLIVOSASCO', 'BR', Decimal('389.98'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('d20308dc88e89195025eafb37836b406f2508c7fa74f8002a47add15eecdf045', datetime.date(2024, 3, 30), 2, 'PAG*ColoreGelateria PIRENOPOLIS', 'BR', Decimal('44.46'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('d2128e63e88c878006255b6b2a3bd3d5f38814f2ed90e56b7a7ab473324c6de1', datetime.date(2024, 3, 11), 1, 'Compra com Cartão', 'BR', Decimal('378.70'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d23cbf4e13ae58f8a9b258263cfb69e6338012ffa8d9dc98859ee82f44beab66', datetime.date(2024, 3, 24), 2, 'DM *SHEINCOM MIDVIEW CITY', 'BR', Decimal('162.93'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('d2429b52d2a31c3d3a4f0ea5f6a09584b18915000f3de183f7d1a873355fe1d4', datetime.date(2024, 9, 26), 2, 'STEAM PURCHASE SEATTLE', 'DE', Decimal('13.79'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d248ff4195f22062e95cfdbb5ce8495baf020cff1d58a57b2ff018aae9d9a3fb', datetime.date(2024, 10, 19), 2, 'MePayFinancial BELO HORIZONT', 'BR', Decimal('3.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d2cc285ee547c584a7e6713d31c5d21ffa2577e383714785136a490d4833efd4', datetime.date(2024, 4, 26), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.26'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d2d673cfc82409b3c43dce2236e643b2e8ed1dcabcea58003b19963fc31e4d99', datetime.date(2024, 1, 21), 2, 'PAG*GaleteriaSerrana BRASILIA', 'BR', Decimal('150.43'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('d30db524eebd61457ca24713abf256fc1763556a5b76bcc109f2e47990fa3811', datetime.date(2024, 6, 28), 2, 'DAISO BRASILIA BRASILIA', 'BR', Decimal('142.96'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('d3177cb6286f4ec7a22196f53b9a8509db142e6ca6bdd91864bb36dc9c9d5c5d', datetime.date(2024, 10, 6), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('226.71'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d3254132b180b369ad19ee102957d0f1a57f7d6e920a2ee5c1968f21b2844e50', datetime.date(2024, 1, 2), 2, 'NEGUINHO DO CARANGUEJO LUIS CORREIA', 'BR', Decimal('234.30'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d32e067a0f9947cf75b884a7739d8888c875b5c8b38d13e721c56e7c7787e14c', datetime.date(2024, 1, 24), 2, 'IFD*iFood OSASCO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('d33ee618ae3fcbd290a87b041d5023fa81b6d303fd937786381beb604ac50883', datetime.date(2024, 1, 17), 2, 'YOGOBERRY PIER21 BRASILIA', 'BR', Decimal('29.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('d34dd5956cd57edad23a919ffae56559de2fb717f16878e769f3863015b20f0d', datetime.date(2024, 7, 4), 1, 'Pix - Enviado - 04/07 10:12 Au Au Que Visual Pet Shop', 'BR', Decimal('360.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d379a35ede5d35389855c6915c5b76d72663f13ca03bc1245a1b8b68635a5f0b', datetime.date(2024, 5, 20), 1, 'Pix - Enviado - 20/05 20:23 Katia Cristina Martins Gue', 'BR', Decimal('80.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d387c8cd4bf7585d1b8197284eede034fd9b6cc34c245c73c86511389a49a4ad', datetime.date(2024, 3, 8), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('12.91'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d38a9adc637630ec8a5bfd07118271c350468eccbd24fd8a851b58873f6b68e2', datetime.date(2024, 7, 12), 2, 'PG *TON MINHACANTINA BRASILIA', 'BR', Decimal('35.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('d38fcf4e0f5a7537d127cc0a97553f13e598b8198179d5ec504cbf5a3614d46b', datetime.date(2024, 8, 23), 1, 'Pix - Enviado - 23/08 09:02 Tatiana Von Paumgartten Va', 'BR', Decimal('180.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d3b33fb47d308357293a7fae08ed163c9687db3192b4f614a6d47c26c8f5dd75', datetime.date(2024, 5, 25), 2, 'LOJA DE CONVENIENCIA D BRASILIA', 'BR', Decimal('10.50'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('d3e22d2a03f2d8dddba820c9e0069445f1574af66a5808bd1af1c67f11635188', datetime.date(2024, 10, 14), 2, 'MURAKAMI BRASILIA', 'BR', Decimal('59.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d3e6924e7f688e8515065b0270c4950e5ec77e81d51a0d740d0f1c3ff79663d5', datetime.date(2024, 6, 21), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d3f5dde7b027b01084ba2ac4afaffaca30c8ae068911cdfbfe8e963e8b65ccad', datetime.date(2024, 1, 4), 2, 'ARAUJO E RIOS LTDA PARNAIBA', 'BR', Decimal('81.78'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d40e4406d410767a58b68e55fdedc0c63478e2108a2b734c6124c6bd7354fcda', datetime.date(2024, 4, 17), 1, 'Pix - Enviado', 'BR', Decimal('360.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d4446342779a35c32bd37cbd6dcd6069394df845b3959604fc16764bd7ed9498', datetime.date(2024, 11, 5), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('5732.90'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('d44af06b1386701519bb3a94cbe656b8fe56745f4bf1cd8bbb2de8bb003918c7', datetime.date(2024, 4, 12), 2, 'LISTO*CLINICA PARC 01/04 BRASILIA', 'BR', Decimal('2000.00'), Decimal('0.00'), 2, 1, 4, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d459518bf23fb130cfaecda58d7cfc5bf84dc1ae7268a0166ac624a8eaa3e8b1', datetime.date(2024, 11, 23), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('14.89'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d4621d31f3e2351a0a9b0381692c99c13c06fb29ff1c0477547ae2216b64c3f6', datetime.date(2024, 11, 25), 2, 'DROGASIL 1978 BRASILIA', 'BR', Decimal('161.56'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d4800f232909a1973830c40c64ae63a93265ba6ec971147a0f63500d2491bafa', datetime.date(2024, 1, 29), 2, 'RESTAURANTE DA JUSTICA RIO BRANCO', 'BR', Decimal('35.97'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('d48f26643049a2ec4e0d713330aa2cc8c48b9d52f0f1610575f3e3693e745e78', datetime.date(2024, 12, 6), 1, 'Pix - Enviado - 06/12 11:45 Escola Canadense De Aguas', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('d51e5c902c99897dabe95a2b1cfadbd8a8c57c7c8ce08dccf2f7e5670bfbf47c', datetime.date(2024, 4, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('5701.23'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d5208311d6a2f8f0714d6dff6fad369fa203865a3874c0eb5da66701afe7178d', datetime.date(2024, 12, 15), 2, 'VELOE BARUERI', 'BR', Decimal('32.51'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d5290f034377f02f1156bd3222806e4021075260187189b4150c743b07f1807a', datetime.date(2024, 2, 14), 1, 'TED Transf.Eletr.Disponiv', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('d529181723cbcf2895e8348a6eb2e2c8d24c0c8a49505cff2cabe740ca039091', datetime.date(2024, 12, 20), 1, 'Pix - Agendamento - 20/12 06:10 Maria Eliene Oliveira Port', 'BR', Decimal('679.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('d53fcd54a362a2a1a9173dbe81fdfe7a02ca0d97bb5b0ea9af248df56e09a0ec', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 06/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 6, 12, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d55f23f0786355773a58edbb69323a384e155842593aa3e9b42621e6c11bb805', datetime.date(2023, 12, 30), 2, 'POSTO FIGUEIREDO II CRISTINO CAST', 'BR', Decimal('248.36'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d564a9ca6853d44636daf5e1592324e66e36ab4092a358e53058f3437440455b', datetime.date(2024, 9, 12), 2, 'BISTRO OUVIDOR RIO DE JANEIR', 'BR', Decimal('96.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d5798b6a8f21719a952de1d66808dc9956885712f631943a6a2f7057f950f30b', datetime.date(2024, 10, 22), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.01'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d58cc37ee1cdbd3cd82827f1cd156f23f2facfdfb0d2581d0c9fa2414e4b5b75', datetime.date(2024, 7, 10), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d5937ca5b879bce7f6c3af517a623f9b54e55e707b7b430aa5ff765b1a23c371', datetime.date(2024, 1, 18), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('9.49'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('d5c4d99da8ca4f578101a1bb8cec479399b41cb0c9c4a74e8a7f676f1f284a87', datetime.date(2024, 9, 23), 1, 'Transferência Periódica - 23/09 CRISTINA B SILVA 001/010', 'BR', Decimal('280.00'), None, 1, 1, 10, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d5d234eaef5befa8b20ff2e221daf088139e8275b9dfc9f0c3318f9fe3fcc5c3', datetime.date(2024, 1, 26), 2, 'VISAO INSTITU PARC 03/05 BRASILIA', 'BR', Decimal('200.00'), Decimal('0.00'), 2, 3, 5, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('d61ca83ecbbd5ee17728dde2348f7909238a5aa61feda3d7338c476328336e84', datetime.date(2024, 11, 23), 2, 'LaDuquesita BRASILIA', 'BR', Decimal('61.50'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d663e1ee7ae94e3219d0b1ada360b3f68ac8c3d03be124d18d836bedd242395b', datetime.date(2024, 2, 26), 2, 'PGTO DEBITO CONTA', None, Decimal('0.00'), Decimal('20874.20'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d674925cb04f36a0d0256ae2ef9eabc205c96d4ce0f852fa089b99efe4fee922', datetime.date(2024, 12, 3), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d690a18e6b51ea6bf0ee738bb5162367dcdfe682c58b0237775bdff8665ff384', datetime.date(2024, 2, 25), 2, 'SHEIN.COM SINGAPORE', 'SG', Decimal('94.10'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d6d0d02ca3479e7b86026b716f0dd459a73b26f1eab709cf5e94c79b5342cada', datetime.date(2024, 4, 9), 1, 'Pix - Enviado', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d6e33672101599b97e9b1cb55642b854d55231eac41afc005766a7cdb34e2c5a', datetime.date(2024, 6, 30), 2, 'SABORELLA CASA PARK BRASILIA', 'BR', Decimal('31.35'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('d74c23f1abcb494223b90c60223ec012b253af4985447d09e804cbd785e5e7db', datetime.date(2024, 2, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d75152f32ed155d5acd4097739ea24eee71ae4f142075ecaa4f66072eb30a02f', datetime.date(2024, 3, 22), 1, 'Pix - Enviado', 'BR', Decimal('166.43'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d7829acb90ff0fca39e6ef2d02ee7906add3a47f0a235115c12daa18dd4de444', datetime.date(2024, 3, 19), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('157.92'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('d7ba888ec23753f1c7c93d03069eaf2b96b19217c9370529113bbfe034cc4b09', datetime.date(2024, 4, 22), 1, 'Recebimento de Proventos', 'BR', None, Decimal('20643.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d7c095616dc70a4b02736f336d120a85d0937e407f2b061d71e21deaf7e84bca', datetime.date(2024, 10, 21), 2, 'ACADEMIACONC RIO DE JANEIR', 'BR', Decimal('344.60'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d7e99034286a9d7c9f7141b75cb2106075aa7bad5aef9c65e5b4fdbdf9414e69', datetime.date(2024, 3, 27), 1, 'Remuneração sobre ações', 'BR', None, Decimal('1.05'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d87e867ad1f42aaebd6a93f40460f353c6a7d5ad036641bb5c86e6ef0dc78cf7', datetime.date(2024, 9, 28), 2, 'MERCADOLIVRE*10PRODUTO FRANCA', 'BR', Decimal('434.83'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d8832b6781f405e81c45edd9238e9797a8cf8894c70148b0d5794baf8c740f10', datetime.date(2024, 8, 23), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('79.90'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('d888373199521dc4a302b8d9f206555c6cfd27e540ce94e32b79912974819636', datetime.date(2024, 11, 16), 2, 'SHOPPING ENXOVAIS E UTIBRASILIA', 'BR', Decimal('149.96'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('d89c07c24dbc8cd9fbfbd23305b1dec709e6195223049bb810a317200167939e', datetime.date(2024, 5, 10), 1, 'Pix - Enviado - 10/05 15:10 Francina Noleto Aires', 'BR', Decimal('120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d89f291af8e387690e0487e6cd4c70981e2b2037db5713e6fdfbcf1c9c532507', datetime.date(2024, 7, 22), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('7650.96'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d8a45ef296ca898c0b2e51a3c5d824553770d1e55c9a038ca2c037e54de87a1f', datetime.date(2024, 5, 31), 2, 'WOW*SALE COME PARC 02/02 Brasilia', 'BR', Decimal('475.00'), Decimal('0.00'), 2, 2, 2, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('d8b972af29371aeb750977a9211b72fdc793750989a331a59eac086d124bf7f1', datetime.date(2024, 8, 24), 2, 'IFD*MIPA CULINARIA CONSBRASILIA', 'BR', Decimal('82.99'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('d8bc3aec947f63f8076b2a70f175f6aa5f898bbfb626146721ed918baa782967', datetime.date(2024, 8, 16), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('1020.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d8c3d4c6f48351d506c10bfac4872346a24652a2f8dd39d0d23b6ad0e89130a8', datetime.date(2024, 2, 8), 1, 'Pix - Enviado', 'BR', Decimal('145.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9213eb13ba0e6a3dd6182f6e8e9f2d1dfc6eeabc8033b34e65b4f21078a220d', datetime.date(2024, 5, 7), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('45.90'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('d92add266306add4306acfca3fd54ab69ecb6be98ef20d0cc44b9f65093b09eb', datetime.date(2024, 6, 20), 1, 'Recebimento de Proventos - BANCO DO BRASIL S A', 'BR', None, Decimal('11665.44'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('d931fc392cad7055f716366b90bf665d7f931043246aff21cc32f018980c3b7f', datetime.date(2024, 9, 23), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('18445.94'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d94c6ac234d04282ce28322c8f51795c3ed3681a8b00520b967101d2df749e0f', datetime.date(2024, 10, 22), 1, 'Vivo Celular - VIVO MOVEL - DF', 'BR', Decimal('252.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d985ff88101b0da2a6338c18b7cbdd618c47c7df3619fe9de1e780a02ac61e6a', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 03/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 3, 10, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9b3de52a140f502ba284cda1275271e67cb33bbfffe5fc49d81d1a4e9103e55', datetime.date(2024, 12, 15), 2, 'DECIO UBERLANDIA UBERLANDIA', 'BR', Decimal('276.30'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9b79948455588b4b7e726da5e9329643b22f08c6e4a731bdba249779a3f1318', datetime.date(2024, 10, 12), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('10.41'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9b7d51d6d184cfe416540c9705e869b015eb10ca22e06b8b72a53b8b0023474', datetime.date(2024, 8, 30), 1, 'Movimento do Dia', 'BR', None, Decimal('90.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9c28cee2af0100f338587bbbd437dadb8108c596bb14c16b468779ef82d79ab', datetime.date(2024, 10, 8), 2, 'DiogoLealPimenta BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9c5bb2c166a5833f59d56f9e67f735e5beadcef39b486cdd4993fe94e169da9', datetime.date(2023, 12, 22), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('14.98'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9d307743cac72c5ee7d4c910a03b33744948f262c2e3d6cf40f86b2eb9fcafa', datetime.date(2024, 3, 18), 2, 'IFD*IFOOD.COM AGENCIA DOsasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9dffe581e14eeb4302f97d7b7bded83985567a1eb90a8849fa4ff5358dbd503', datetime.date(2023, 12, 12), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('36.61'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('d9f8dff695a08d3a97164cf1f5a944b27b79878099b5905540eb2bf41a8bc8eb', datetime.date(2024, 6, 1), 2, 'CANABRAVA COMERCIAL BRASILIA', 'BR', Decimal('76.90'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('da4d0c4289c85e40d337a8852082b57ba4aa6e9e377e55bb79c377c5351e09c7', datetime.date(2024, 2, 9), 2, 'MERCADOLIVRE*MERCADOLIVOSASCO', 'BR', Decimal('438.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('da4e8c38a4a1baca413d078c1b217f8d420cba93286f564e68e68e57164c4516', datetime.date(2024, 10, 16), 1, 'Pix - Recebido - 16/10 06:14 00007483308605 CYNTHIA NAS', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('da557f2a28a987eab877386cdff720ed2a00e49b1591bc8b9a91fe31e6e098e8', datetime.date(2024, 1, 10), 2, 'ENERGY COMBUSTIVEIS LT PARNAIBA', 'BR', Decimal('194.95'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('dab0d2eeec79fe398e9c4b7722e0f4bc1a9e7ff10e25fa19d5983d4bebeb857e', datetime.date(2024, 11, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('dab7005ab6a670d1775dcb5c4d43c5f878116c21fe0a917bdcbb270bc46c0669', datetime.date(2024, 9, 11), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('900.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('daba449b7b1ab40ac6a053a4bb2ed6c6f854d97af3a55b09d47f792abc4efc45', datetime.date(2024, 5, 31), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('18.97'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('dacf3f41082bd4c6c95f1d657f774e82a8be4560def5f269035f78d212bbcd41', datetime.date(2024, 5, 5), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('18.87'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('dae3b638f38c3fe86db5c23607dfed887d9160349a40601919870c59a74be453', datetime.date(2024, 5, 31), 2, 'PP *USEVITTAL Sao Paulo', 'BR', Decimal('183.61'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('db279bc665faf271340f9a7528e7921602cb08b5d0c5dab95a8f718cc3ec32ec', datetime.date(2024, 3, 11), 2, 'SANTA RITA RESTAURANT MACAPA', 'BR', Decimal('47.36'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('db464d2b148742d95bf7b3f2a42cda3dc72d821f34fde169a2e99cceb2f60eee', datetime.date(2024, 8, 31), 2, 'OpticaSalute BRASILIA', 'BR', Decimal('3300.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('db5321a5e4dd2f1235f174334791c081a3ce108b532d41a3af88e628613a6e8a', datetime.date(2024, 9, 9), 1, 'Pix - Enviado - 09/09 21:53 Natalia Pinheiro Moreira M', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('db9292678ed3cabf5a2bbbd4765b0815e229327aa133280c107eda29dfc3dbea', datetime.date(2024, 12, 16), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('6.91'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('dba45a34abffd4da775b0de59ec1f14297894c90196dbb907ad04c2a28158917', datetime.date(2024, 4, 27), 2, 'DEPOSITO DE BEBIDAS PI BRASILIA', 'BR', Decimal('54.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('dbbe4fc614ff94b85dc18b3e0cf1b7a312c9295d1e1efb771ece72f4f80f7bdc', datetime.date(2024, 1, 22), 1, 'Vivo Celular', 'BR', Decimal('240.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc05f87a4aaba2bcc5fd8aca275435dd276a8f70897daa0c717cfdcb3b3993ec', datetime.date(2024, 11, 1), 2, 'MERCADOLIVRE*SDNCOMERCIOSASCO', 'BR', Decimal('159.92'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc5dadd09c74aa9ead78fa9a1035a703118d24ecb3721c9b3e853e35c6ecb3ea', datetime.date(2024, 5, 27), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.90'), Decimal('0.00'), 2, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc66ab42907d6b4d31c8c05c5953655cdb34967c48ae5144754a515abace28a4', datetime.date(2024, 1, 24), 2, 'IFD*NFE COMERCIO DE ALIBRASILIA', 'BR', Decimal('170.99'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc6d9812d478d9546a72ead885ab8e6b6e562ee9cadbfd17b19575902029787a', datetime.date(2024, 3, 19), 2, 'PICPAY UNICOMPRASINT Brasilia', 'BR', Decimal('353.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc7aa4a55aecec1bd4507353c9359fd01e8edbd839d2007673614e97e54d7d52', datetime.date(2024, 12, 2), 2, 'TERRITORIO DO VINHO CAMPO GRANDE', 'BR', Decimal('116.50'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc85206ab72905bcbb8dc3b7ed0c338e851543fedf1595c8aa21a302a07a4ce4', datetime.date(2024, 10, 14), 2, 'MERCADOLIVRE*LOJAHOOPONOSASCO', 'BR', Decimal('49.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('dc945a9894db6d70c296e92ced7ac85626b2a86d2331452b56a631cddf6b1d80', datetime.date(2024, 7, 15), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('19.90'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('dcab3060d6dccf8856511b1e6979862ab131d5f7ffe3f00a0f9606bdde783d5e', datetime.date(2024, 9, 11), 1, 'BB RF Ref DI Mega', 'BR', None, Decimal('900.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('dccf0222efec55046e88ae0a98854a1e3cd5489c4debf3a0ec0c010fc8c81ec3', datetime.date(2024, 3, 19), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('11.83'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('dcfaa14a912bd9dfc7015d0feab5375b1adbe5de35931b6dac501f2d1aa12a47', datetime.date(2024, 1, 5), 1, 'Pagamento de Impostos', 'BR', Decimal('163.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd218566ea5b2f737213da7785eb217036abc2500ff720f48d59f1c047ef4783', datetime.date(2024, 12, 23), 1, 'Transferência Agendada - 23/09 CRISTINA B SILVA 004/010', 'BR', Decimal('280.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd2c0ad47d6feead6ca0e2fbe0ab2f1db7cdc1554fee6792ded10685298c03dd', datetime.date(2024, 6, 25), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.65'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd2d8cdffeae4ba7ec543a28a221811db1c277000c6e553cffe4d280b4daa9df', datetime.date(2024, 8, 26), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('92.87'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd3a0fafeaafe8237db05da973066268e27183955319267669f904443a49113d', datetime.date(2024, 2, 9), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('11.45'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd4147de5500eeedd388ec1c9717e0fef3874d81f3e88f2fbc9e24d7e3085c12', datetime.date(2024, 8, 30), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.01'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd61f10bcd1786e46a74d212b20cfcf0d4799c5df333c4f56e573d4346a82805', datetime.date(2024, 4, 1), 2, 'FEDERAL GOUR BRASILIA', 'BR', Decimal('18.93'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('dd91d1031342836910a6b6240a56754eae9e5ea2822074a830b4d657918e7b73', datetime.date(2024, 6, 21), 1, 'Remuneração sobre ações', 'BR', None, Decimal('0.98'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('ddc661c35c9a4839dcc74f69b87ed311910cd27b28a87000669bf8dbf5972dc3', datetime.date(2024, 11, 21), 1, 'Pix - Enviado - 21/11 11:54 Milton Benfica De Rezende', 'BR', Decimal('275.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('ddf9015d414cd5cce19bffcf2df26046765ad433d840685b67ce685c1892a1bd', datetime.date(2024, 3, 5), 1, 'Pagamento de Boleto', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('de062f0bbec17abfa2e254f83f04c6d3341318f41916cf07af346b4e6c957e77', datetime.date(2024, 8, 16), 1, 'Pix - Enviado - 16/08 13:12 Carlos Eduardo De Freitas', 'BR', Decimal('1000.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('de1e7faaea191622e06548399f05c1ae33525005290c63603f1819a2ec71f437', datetime.date(2024, 10, 4), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('16.46'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('de24a5c0f35138b5717eb7165d8993d4a660ec9d917e15800f3e268b881d07fd', datetime.date(2024, 11, 18), 2, 'ZP *RSV RESERVA INK Rio de Janeir', 'BR', Decimal('194.50'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('de466e65e04c94724c0c05bc7769889cd28046ccc9198766bbf18663bdeccd96', datetime.date(2024, 2, 13), 2, 'NOAR CHOPERIA SAO PAULO', 'BR', Decimal('18.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('de5d70ae4fd7d2a9ac1cbd5331e2f631ab3b4e38b2e25eb69983a20e22d5e8ea', datetime.date(2024, 12, 3), 2, 'MERCADOLIVRE*ENCANTOVELOSASCO', 'BR', Decimal('57.95'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('de642afb2a59d00a32f92855ea6d3f0c2d0d6af75492772cf6cc10025b5c262b', datetime.date(2024, 7, 13), 2, 'PAG*EduardoMeireles AGUAS LINDAS', 'BR', Decimal('14.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('de64ebced3c71759753591db64c743a1c4d4107c3681f811a26f180fc7cef160', datetime.date(2024, 2, 5), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('de6e89a842240e02d318c76e007b15c6c0ea270cdfd450b80792e482db8bdc37', datetime.date(2024, 5, 13), 1, 'Pix - Enviado - 11/05 09:50 Magani Schimidt', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('de7d347d7c28b474146b222e1d7692f974cf91c9de19092869931e4c98ed2dfa', datetime.date(2024, 5, 9), 2, 'INFORNO BURGER BRASILIA', 'BR', Decimal('324.80'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('deaa24f70ff084d3779c92778015a79aacc7970f0006309a190a03e914dc56db', datetime.date(2024, 2, 10), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('619.90'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('deaa41efea12386a1e280bd1ea1b2eec452a87a48d1c8aaf7307142ed308e3a8', datetime.date(2024, 10, 11), 2, 'IFD*E D COMERCIO DE ALBRASILIA', 'BR', Decimal('201.99'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('deb1a448652e234bd79af2a26b5dbef8fad6cfa309d2a85e6fee6949eb0fd657', datetime.date(2024, 7, 19), 2, 'MERCADOLIVRE*3PRODUTOS OSASCO', 'BR', Decimal('276.52'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('ded64dda776c3bb0cf5b631879fa7b08d6234ee426ef234919642407b417baf8', datetime.date(2024, 2, 3), 2, 'ifood *IFD*EL PASO T Vila Yara Osa', 'BR', Decimal('225.99'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('dedd239f956129447de301e046585576b40c1afa74516107e91e9638a61d7b2c', datetime.date(2024, 9, 20), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('786.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('df3108e536de5760db0f198f0987810b7ae0c7c9534d81c5ea636980055a5bfb', datetime.date(2024, 1, 15), 2, 'MP*MUNDODOSCO PARC 03/10 SAO PAULO', 'BR', Decimal('159.90'), Decimal('0.00'), 1, 3, 10, None, datetime.datetime(2024, 12, 21, 15, 28), None, None, None, None, None, None, None, None, None)\n", |
|
"('df3f3544ecfa722638873ecf4e0b000ea8f66adf218c255bf1b7b511406b8307', datetime.date(2024, 5, 19), 2, 'CAFE GRAO NATIVO BRASILIA', 'BR', Decimal('131.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('df76f093519a33e3bb98fe05e903785c053507347622b8c05589862d0be0b192', datetime.date(2023, 10, 17), 2, 'BIANCHINI AUT PARC 06/10 BRASILIA', 'BR', Decimal('535.00'), Decimal('0.00'), 1, 6, 10, None, datetime.datetime(2024, 12, 21, 15, 28), None, None, None, None, None, None, None, None, None)\n", |
|
"('df8ffacba34df92637f97d7fdfc6d21148467db08bbf973974c9d6fbc172146b', datetime.date(2024, 12, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('df93509ee85d0485a087b79a30ad7b63fc15c9be41aa6d7b9ec95204783262f1', datetime.date(2024, 5, 28), 2, 'MP *MELIMAIS OSASCO', 'BR', Decimal('17.99'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('dfafb9592975adb63e35d7c0676213f04a365ba3c1e38938d74eb3cdb10f6822', datetime.date(2024, 7, 9), 2, 'PRIME GLOBAL PAGAMENTO BRASILIA', 'BR', Decimal('838.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('dfd802c9faa0853ef7cbd12815f4defed13df5a4ba33405b7883b35ea1ff69bb', datetime.date(2024, 7, 2), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('11.82'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('dfe43774ee54970835139f1d27e72604eab089a6f9c82411bb13320bd57cc95a', datetime.date(2024, 6, 18), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('8.40'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('dff91c504871f687acbea22c0554d41e45c31f18c1a90198ef332bf9e6672051', datetime.date(2024, 10, 31), 2, 'MR JOHN BARBEARIA LTDA BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('e00e23fb965b69e473bab3c0647f530b751aeae5811cb5ad4f6beb8cd29b306b', datetime.date(2024, 11, 4), 2, 'DROGASIL 2067 BRASILIA', 'BR', Decimal('62.50'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('e01dc2143028fba74f4f6cf39c4516cc602f6555f6262a197f3c260c34c915b1', datetime.date(2024, 12, 8), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('9.92'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e02dec4f81a81201c19cf7ffc60e9879be892fb5ee6bb754808ef159d4652952', datetime.date(2024, 7, 14), 2, 'RITUARIA*Rituaria SAO PAULO', 'BR', Decimal('448.20'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0629a9fc7b111e7e78db3ff9258c875c868a5d4883350a38d93f5d0903a56d0', datetime.date(2024, 7, 19), 2, 'IFD*CR EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0822781b07e246161f22176f883e849718eff9cfc49eedbf347c7f06bad80c8', datetime.date(2024, 7, 12), 2, 'CASCOL COMBUSTIVEIS BRASILIA', 'BR', Decimal('297.86'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e099571e9112323bf15408a01cb601e41af70b6f5e74917aa4d78bfdd2b1e84f', datetime.date(2024, 3, 25), 1, 'Pix - Enviado', 'BR', Decimal('52.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e09a40ea66cf6a8b9aaeff9c3fac220cbdf5bc0860a223f3cf52aa3784c788a8', datetime.date(2024, 12, 8), 2, 'SANTO PANE CATALAO', 'BR', Decimal('66.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0a9c2ef5a22d7f612d7d44c38fa2ccc2db8bf9bde055a62d3be8659a79eff17', datetime.date(2024, 12, 4), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0ae6031950832132dd8ea919d818d5413fc5700847e667775d917b9004e8c79', datetime.date(2024, 11, 11), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('9.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0b52d5deae24d4f754bc2d4a8ca352b08baa44808b139a179f7e0e854680417', datetime.date(2024, 1, 31), 2, 'RESTAURANTE DA JUSTICA RIO BRANCO', 'BR', Decimal('21.91'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0be79a06dc19d11950d6ec58617651e764c1477c2b8b2d60f495a32ee285d4e', datetime.date(2024, 7, 12), 2, 'LIMBER SOFTWARE E CONS SAO LUIZ DO P', 'BR', Decimal('54.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0c1aaf80b05367d18f2c17ce45b6b2bd136d4f93bf3071ce54fc4c8b4797337', datetime.date(2024, 12, 19), 2, 'CONVENIENCIA DA TORRE BRASILIA', 'BR', Decimal('59.70'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0c678713d6c505ea91363a783d8103a54a4d609f8c93f6342504bf944cdaa84', datetime.date(2024, 11, 9), 2, 'CR EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('e0db95a5c960f86bbc7c29d1d0b5cb93accbcda2134269295158c68715b933ab', datetime.date(2024, 12, 16), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('649.02'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('e13096bd3976e64c7b3ed27f93070757675c554d047eb39188c886cad846734a', datetime.date(2024, 7, 16), 2, 'POUSADA PIRENEUS RESOR PIRENOPOLIS', 'BR', Decimal('1704.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e13c22b2d9832b60cd411ede17b4a125e95677b2624473ab09b015604097487f', datetime.date(2024, 2, 25), 2, 'IFD*HAPPY HARRY 201 SULBRASILIA', 'BR', Decimal('110.89'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e154884004056588cb4fa69d506dbb8ae939ebcd81d9c0ef88cd2a5fc55298e7', datetime.date(2024, 1, 14), 2, 'IFD*iFood OSASCO', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('e15887f75324f17b029083768a128bc2432c2c304954a24de4e946dbdc8b5f3e', datetime.date(2024, 1, 5), 2, 'PAG*chicoizaura PARNAIBA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1603e9fab84b6722cc12ad383a9943ae141318f1ce46a7ad74d03ac8412baca', datetime.date(2024, 10, 23), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('628.67'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e164a8afb6bf16ff9eb98d3e673869ff86dfbc9a235c8dd791ee107f4b4365e5', datetime.date(2024, 8, 4), 2, 'RESTAURANTE SAO JOAO TERESINA', 'BR', Decimal('108.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e18c9f68f9ade62903dde634e5f8b27e38d8c35f3c802ab9dad78cc3cf5f28a1', datetime.date(2024, 6, 25), 1, 'Recebimentos Diversos - PRO/TRF PROGRAMA DE ASSISTENCIA AOS', 'BR', None, Decimal('427.82'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e195a09f28232fab662f21f2c0bc16e0e129a611a83be8ffbeadc6a0977dac0c', datetime.date(2024, 10, 3), 1, 'Pix - Enviado - 03/10 07:59 Neuropsi Psicologia Basead', 'BR', Decimal('2450.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1985d4819614b5b648f799ad8ff4dddfb1807cd50e180b54803df82e9dd3281', datetime.date(2024, 9, 26), 2, 'PousadaVila TERESINA', 'BR', Decimal('200.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('e19fa25fe46b6011167d189cc1a6ddcb687adffa646b13b386abeb1935e31772', datetime.date(2024, 5, 10), 2, 'MG LAVA JATO BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1a53da4f7ab3751065506143520cce5bd9dc91b5bd6cb782d930a305e4f6f29', datetime.date(2024, 3, 23), 2, 'COCO BAMBU IGUATEMI BR BRASILIA', 'BR', Decimal('250.23'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1bd20a7f4f78f3314994e130b561cae7d06aced3fec198e21450c6e5370d756', datetime.date(2024, 2, 13), 2, 'SL CAFES DO BRASIL PRO VARZEA PAULIS', 'BR', Decimal('2.40'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1cd90e21652a5d7ae1741fb126196afaca0f488e6b7b9b23319a92dfeefb3a3', datetime.date(2024, 4, 15), 2, 'MERCADOLIVRE*MERCADOLIVOSASCO', 'BR', Decimal('161.96'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1da9cbbd01a7e3ffc29da64824db588109a9bf7a2df4f217333b6c3277a2475', datetime.date(2024, 1, 29), 2, 'IFD*RSNT MIWA RESTAURANBRASILIA', 'BR', Decimal('121.80'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('e1ddf85b3de155e7772864b27496bb8674f216423d3f0eee7fab95e37de06c4b', datetime.date(2024, 4, 10), 2, 'IFD*F C BOLOS DO FLAVIOBRASILIA', 'BR', Decimal('90.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('e238d627506be7f040bfc8b56109d50ad468bc2f9dca6887a8217f9b58ebec56', datetime.date(2024, 10, 25), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('18020.02'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e2538870ed92f0ef8fbeb8262126d9c4424132976b4981cd32f5793106e4be0c', datetime.date(2024, 9, 30), 2, 'PG *SALIENCIA BRASILIA', 'BR', Decimal('169.89'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('e29323072bf887f3532a701538d86218ce4378b8f0a8d459d60cfb2cd50bdf6e', datetime.date(2024, 9, 10), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('24.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('e2a3dfad11c8a1d0dce14f41f3370134f399aa2627844e36caecbc4caec6cc37', datetime.date(2024, 7, 29), 1, 'Pix-Recebimento devolvido - 29/07 21:21 DANIELA MACEDO CUNHA MOU', 'BR', Decimal('80.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e2ac3c76d6f3e98ff52b24eb1a3fc48526fd1a27834d633455a5f21ee501163f', datetime.date(2024, 12, 15), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('10.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('e2b0d4f4ec14aa480807884e1d2e75784590323f4eb5e76557e8ee129602ade0', datetime.date(2024, 2, 10), 2, 'CADEIRAS DESIGN BRASILIA', 'BR', Decimal('1380.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e30c30acbdfe097d3217694c17596acb5a24156f5d14c8b48251521a63077e78', datetime.date(2024, 11, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('e3244aa99f20ffbbde2754facd3748f7e8352856e22dc54dc4b55eab282fe1dd', datetime.date(2023, 12, 29), 2, 'AUTO POSTO SANTA MAR FLORES DE GOI', 'BR', Decimal('45.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e3345678235ecca19521140ca68e12dab45a9190c539dfb359ba663627b30af3', datetime.date(2024, 5, 17), 2, 'PAG*Folhadesp PARC 01/06 Sao Paulo', 'BR', Decimal('109.61'), Decimal('0.00'), 1, 1, 6, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e354288ffefd55f9ef6f97b625fa5d6bff7f1166aa3a1609fd1c0fb53752f117', datetime.date(2024, 3, 31), 2, 'RR PIRENOPOLIS', 'BR', Decimal('240.08'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('e446a51701cf3bc108ce5e7ebf1dc59a76461ade342ae4edd73eb66bb5a5cc25', datetime.date(2024, 8, 29), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('e45a4fa47c80b8d0b37d4d083e6a7e50e9e03ab427e31300457e9ec0de740096', datetime.date(2024, 7, 8), 2, 'CASA DO HOLANDES BRASILIA', 'BR', Decimal('147.42'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('e48335c93c5fdf5f628f7ea4de651d085292e1cad37be5bb32cd83f1b086853d', datetime.date(2024, 10, 15), 1, 'Pix - Recebido - 15/10 21:56 00540456144 ALINE DALEPRAN', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e49993b400eac4d63abda59a3df046f4c8468577960f4421f20acd48f4edc9fd', datetime.date(2024, 11, 1), 1, 'Pix - Enviado - 01/11 15:09 Loterias Caixa', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4b58d84415a97f8a8f26cfff266b058e767fa5ceaf0ad1fd17425a5d5cc0b7e', datetime.date(2024, 12, 8), 2, 'POSTO JK CATALAO', 'BR', Decimal('261.16'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4c112cd7117fcf0074873ec17fe55939b3a868dc8de981fae49ce808c7b48d7', datetime.date(2024, 12, 11), 1, 'Pix - Enviado - 11/12 10:24 Perfecta', 'BR', Decimal('700.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4c71fbd73e967b588785ccff1a81e2c7b9e1abcdbcb09d0995ca81cfde5f1ae', datetime.date(2024, 6, 25), 1, 'Pix - Enviado - 25/06 10:49 Manoel Erivan Domingos Da', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4ce093e2006ffca7c2ce3a8f1f77db5c232524371e0260ca8b3a20930b64fae', datetime.date(2024, 12, 20), 1, 'Pagamento de Impostos - RFB-DOC.ARREC.E-SOCIAL', 'BR', Decimal('534.15'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4d0f4f6dd8315e37036a9b241ce3a4607aaaad89884f3e7633151c48ee250ef', datetime.date(2024, 1, 19), 2, 'CARREFOUR PS1 BRASILIA', 'BR', Decimal('38.13'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4da76873a5ceef922663dbca41b27d1eb41f72e7db23abf020df0d390c12111', datetime.date(2024, 12, 5), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('10.79'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4edc0caabda564c04db367ec36608aa3b691a513e0937b68fd995e6c6840458', datetime.date(2024, 1, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('13.98'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('e4f074ec2c513dbdfdca47a45b63aab884a14e793ea06262c4a31dd616b9e834', datetime.date(2024, 7, 1), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('8.13'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('e502e7599eb8dc0d377c8a815985579e1b2211e62f21ed1181df8c7fdb7572dd', datetime.date(2024, 8, 18), 2, 'IFD*Pedro Henrique BarbOsasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('e504347d36de67a3dc216a39c2a585ddf6c6ae8cc2b7e4bd5ea1b442fd92e0c2', datetime.date(2023, 12, 17), 2, 'PAG*XsollaGames SAO PAULO', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e5669b4e8ca189f9ca5e510eafdeb525220c7f657929d45a56325aa7a2e291a8', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 04/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 4, 12, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e574f6bbedbe84f89cc428cc59b469b50e11e999cedb4fe0145bfa6093b5a80c', datetime.date(2024, 11, 22), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('1.09'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('e5845411581b59082282362a8d77e437d9efb80691a09fc7aef96887f2496dec', datetime.date(2024, 10, 2), 1, 'Pix - Recebido - 02/10 17:25 00022602518115 ADELSON VIE', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e590a64fad1218c5613518fb002462c8c6dbfc04ea3f0fbbd7fb74f9a6305e59', datetime.date(2024, 9, 30), 2, 'MP*GILFRUTAS OSASCO', 'BR', Decimal('30.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('e5bc9c54dd680acf213d035fe1a521e1a8ddabb334ca8189abb3b9b6b9691883', datetime.date(2024, 9, 23), 1, 'Pagto Energia Elétrica - NEOENERGIA BRASíLIA', 'BR', Decimal('566.81'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e60ee61bf74acf2a324022c5211ccc3a21c302493a6ea4a91d221ff66888ffd2', datetime.date(2024, 2, 20), 1, 'Pix - Enviado', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('e636919d5151707763a2c412980e5d42abb63a9053d2fec5d2ff027e66d7ebbf', datetime.date(2024, 11, 27), 2, 'IFD*TACO PEP RESTAURANTBRASILIA', 'BR', Decimal('71.80'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e63fa247c6747f0a210d9e6132a60020e81685ed77d5040485f40c47f8927212', datetime.date(2024, 8, 23), 1, 'Pix - Enviado - 23/08 14:32 Makley Guedes Claudino', 'BR', Decimal('572.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e645687c1667bd0b6d6cc6cc366cd31aa6c6662eb7fd2f802266e7b4dcc972c6', datetime.date(2023, 12, 29), 2, 'GURGUEIA PARK HOTEL CRISTINO CAST', 'BR', Decimal('300.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e64dc75e5fb1b85d84be4018ccdffb97ca55763b2af7d1cbbb20ed76b1a526a4', datetime.date(2024, 10, 1), 1, 'Transferência enviada - 01/10 19:04 CRISTINA B SILVA', 'BR', Decimal('576.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e65105732ef755f253b3e0d028155cb8a79819ea89d04b264b874276a6361cc2', datetime.date(2024, 7, 29), 2, 'MG LAVA JATO BRASILIA', 'BR', Decimal('100.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e6adc1bb09d1b18359c12838a00eb658bcb70e909097167d77e4cbc7d5a14829', datetime.date(2024, 5, 29), 2, 'HNA*OBOTICARIO BRASILIA', 'BR', Decimal('69.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e6b3471902c643752c1a1f013f9cd147796f98c2c9dbd24d0aa73986221e3cf4', datetime.date(2024, 5, 29), 1, 'Pix - Enviado - 29/05 15:21 La Duquesita', 'BR', Decimal('195.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e6ce7e1ace1f987b3471cde7d7a6dcca7801faf7dd0184e00b4f672cf0323051', datetime.date(2024, 11, 12), 2, 'BAR E RESTAURANTE TIA BRASILIA', 'BR', Decimal('57.86'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7111df4286645ca0de46254f21b0abee982005530bfa15dfcb97a0e5b776002', datetime.date(2024, 5, 27), 1, 'Pix - Enviado - 27/05 08:49 Maria Eliene Oliveira Port', 'BR', Decimal('80.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e71a7d45f2c6014e29fecd3485949d5a3bed6b3b593a0b23ee474891cbea60e0', datetime.date(2024, 3, 28), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('14.08'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('e74afa9e0db1162b33637419df0cdff458288d9156bfab147fe6d68c34931cc3', datetime.date(2024, 2, 7), 1, 'TED Transf.Eletr.Disponiv', 'BR', Decimal('865.24'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7590836cbeda50ece38a04ea90ea536e263881d3be3c94a4a6f28e96c02683e', datetime.date(2024, 8, 29), 1, 'Pix - Enviado - 29/08 13:14 Italo Rodrigues Machado', 'BR', Decimal('50.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e77cf3f92d259f37cba709ac0f75c2c540aea83881462cbd96e8cac65a662748', datetime.date(2024, 10, 25), 1, 'Pix - Enviado - 25/10 19:04 Manoel Erivan D Da Silva', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7a8218c2b696c2c8325d58b4444b74c2cf36084fc598ea445d1e83c530b4e1b', datetime.date(2024, 4, 12), 2, 'T.T. BURGER BRASILIA', 'BR', Decimal('77.00'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7c1a4f8b23cd9af7abd81b32640dd8f6bfcb92615b105fbf22349339e7a11e4', datetime.date(2023, 12, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7d485f998598c3879b64f9c46d0f52dd0983be60e9ea5e351f8c00667613024', datetime.date(2024, 10, 12), 2, 'TROPKANA AGUAS CLARAS BRASILIA', 'BR', Decimal('32.00'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7db2c4b8ee3aa3e3fafaed9680ec253a37af11d1ae40b09d6da9f29a03c1bf3', datetime.date(2024, 5, 26), 2, 'IFD*Danilo Pereira Da SOsasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7e024c4904621c709ae981cb28522ce4417b58000a7e0fde285e9ee160e0f17', datetime.date(2023, 12, 23), 2, 'MICROSOFT*MICROSOFT 365SAO PAULO', 'BR', Decimal('449.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e7ee236ce07154b95a6d83f70a25b4f992e1202f4ffb3c1565ca14df3ff01c07', datetime.date(2024, 6, 7), 2, 'DROGARIA SAO PAULO BRASILIA', 'BR', Decimal('88.51'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e80612ef95355658b64d5cd68f92eaa9dd62afd06bf54ed0b0b0590758882067', datetime.date(2024, 4, 29), 1, 'BB Seguro Auto', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e83e1838f7da44576e521c2acbce451258e174102c28c5a6e00e6e609b8c6f5f', datetime.date(2024, 7, 28), 2, 'SAMS CLUB BRASI 4929 BRASILIA', 'BR', Decimal('2256.92'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('e85d6c22a02439b2d0523fb0f2c8757edabab8c08b938fa6f7f3dd89846b5c3f', datetime.date(2024, 1, 26), 1, 'Pix - Enviado', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('e883a7a135a3bce66b13ed533801b896ec51f30db5d7a73d220e672beec0ee29', datetime.date(2024, 5, 29), 2, 'MURAKAMI BRASILIA', 'BR', Decimal('47.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e89f89eab9aae10c11a89238d96dc51362034b4a23b6bdcf9d6fb4c7b7319b31', datetime.date(2023, 12, 13), 2, 'EDNA AMADEU - DIRETORA BRASILIA', 'BR', Decimal('111.15'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('e8a257572e99e95595f2ebef26b780e3bb5b6274f67a5506ec1e2052f9b0e3fb', datetime.date(2024, 1, 29), 1, 'Cashback automático', 'BR', None, Decimal('223.75'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('e8c8fda3f34d0f99d4c5fcbfbca1aad8520e0f5831e9b4047779cffa36b4f28b', datetime.date(2024, 3, 4), 2, 'STEAMGAMES.COM 42595229912-1844160', 'WA', Decimal('28.99'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e902624c1b2bd939e2143970fcee2f4741f0cdf95f75b040e52b11ff1d5c21e2', datetime.date(2024, 6, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('e9169e48205d61bf101259f7f1045ece71827b5347a0320ad7e36eda5e9d9f31', datetime.date(2024, 12, 4), 2, 'IFD*JV ALIMENTACAO LTDABRASILIA', 'BR', Decimal('183.70'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e91da6da923cfcc1e4a0e13b2bc4c0cd4ef9cf25badc8047b45385b6105c383d', datetime.date(2024, 1, 26), 2, 'VINNYS PIZZERIA NAPOLE BRASILIA', 'BR', Decimal('69.19'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('e91e1a103b451f55f5e8829b6635a3b4d5ed6f13699ba14292fa09405deb382b', datetime.date(2024, 9, 16), 1, 'Pix - Recebido - 16/09 18:40 00006552433301 PEDRO HENRI', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e94154448405c9a00c85022a1d937692faa4ebdbf8acd524930c20fae43eee81', datetime.date(2024, 4, 15), 1, 'Pix - Enviado', 'BR', Decimal('600.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e945fc919b07976f994338d1a4a863833bbdd7fb73713fcf8a21e9a16ebca530', datetime.date(2024, 5, 20), 1, 'Pix - Enviado - 18/05 12:35 Lucas Silveira Costa', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e950fb484e49db78915755a4c7ff458c2e2bca49e461e1aac3a202ae1ecf8354', datetime.date(2024, 3, 15), 1, 'Pix - Enviado', 'BR', Decimal('40.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('e95901b3da992a84f07b09f352a5a56840a9de918208dddf69ad8f231b4a8d40', datetime.date(2024, 9, 17), 1, 'Pix - Recebido - 17/09 15:21 01494413124 ELINE DE OLIVE', 'BR', None, Decimal('63.25'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('e96331cf2e41e4e9009329482c4ef1f73e4b0431cbdf8464f9ff4e947a1469c0', datetime.date(2024, 1, 19), 1, 'Pix - Enviado', 'BR', Decimal('275.99'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('e96570ac672122528715cc9aeafda1a0a4008ff258f37183a9e1caf8ea7a5fb4', datetime.date(2024, 2, 22), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('39.95'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('e96ee396e746b0dbf20986191433e28e35c895046f772032a784203e89891a49', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 04/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 4, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 5), None, None, None, None, None, None, None, None, None)\n", |
|
"('e97e2bf4e3401f1d103a2dcc7b3e21b62839b9fff9777ba591960ef78b588fef', datetime.date(2024, 6, 17), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('2.34'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('e98d4e98be199ee91502d5b05439e074b8ef8f541a4ec09764c388edbe8f9c89', datetime.date(2024, 12, 10), 2, 'DiogoLealPimenta BRASILIA', 'BR', Decimal('49.00'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('e9c759c8f6414de7ea87f5fe5cbb3cd25b17b804a7b2049d3ef96959b3e4a1f2', datetime.date(2024, 10, 10), 2, 'CASA DO HOLANDES BRASILIA', 'BR', Decimal('200.84'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('e9f33438ed7107b5e8d9cc1354439025f688938974fa5bf05c66b3fc1d2303ab', datetime.date(2023, 12, 26), 2, 'MIAMI PRESENTES BRASILIA', 'BR', Decimal('163.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('ea0e0f3a8d34d9b3de0bc1860e94bc63d50067c9b219ab806300a40d553d8c30', datetime.date(2024, 12, 16), 1, 'Pix - Enviado - 14/12 10:11 Mm Cultura Producoes Artis', 'BR', Decimal('4800.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ea12b0674da47554a6cb28e6f5abb691785568d1ee50ffe80a964ad4620f4eda', datetime.date(2024, 8, 18), 2, 'NETFLIX ENTRETENIMENTO BARUERI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('ea2f556a2efb37cd7798ec165dd69c15b6bc65c27ed6a937f201247a924deaf0', datetime.date(2024, 7, 29), 1, 'Cashback automático cc', 'BR', None, Decimal('244.16'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ea4b8c57a377b9f74d17813a8fd2d12eb4689fd4ad7eede339e04178bce6d560', datetime.date(2024, 11, 5), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('24.90'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('eac02557d79d67131552608189cbbe7abfbbd79b13d789e1ee738264e0db1bfb', datetime.date(2024, 4, 1), 1, 'Pagamento de Boleto', 'BR', Decimal('1253.68'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('eacfdf01fba5e30ebf07082ccb546c14f95544020c0df737c159b96c65dc5fd4', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 09/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 9, 12, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('eb11a07d6dac05aeeaa63ba35abbfbd0261885f9d0f5954f90361bcde51a0ba5', datetime.date(2024, 10, 1), 1, 'Pix - Recebido - 01/10 13:52 00051758075953 ROBERTO CAR', 'BR', None, Decimal('64.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('eb3b787edf368191f94ade27033cbf3bd0b35a9b93dc281da39f30fd861ee6bc', datetime.date(2023, 12, 13), 2, 'AMAZON BR SAO PAULO', 'BR', Decimal('103.62'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('eb533572f7690cc8d4c05d91d02b8f16a202d1b4938a330fea35a74ba93896a2', datetime.date(2024, 10, 28), 1, 'Pix - Enviado - 28/10 20:59 Livepix', 'BR', Decimal('100.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('eb7357a10233281a8a9c6683795405a9fc088d5a14f51c3ed3b337918f97d7f7', datetime.date(2024, 10, 27), 2, 'IFD*CHINADIFANG COMERCIBRASILIA', 'BR', Decimal('180.75'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('eba1be9b71eef6fd24244072407203fb54e9e32d19d806160c0f09dfe743a8eb', datetime.date(2024, 8, 12), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('6.90'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('ebd10f5fcdbd79664dc803aa82278c328622f4a0538e5e37511706fe70c933d1', datetime.date(2024, 9, 19), 1, 'Pix - Enviado - 19/09 11:35 Au Au Que Visual Pet Shop', 'BR', Decimal('360.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ebd643bc2e33bcd1b129e71cd333cc6f1d2a079e819d7d27a5588b36c9ee1e3d', datetime.date(2024, 10, 12), 2, 'GURUME BRASILIA BRASILIA', 'BR', Decimal('179.20'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ec382afcec47f64d88464cbfce233d3871ad166ca7180093ff0766f7440488f8', datetime.date(2024, 12, 23), 1, 'Pix - Enviado - 21/12 13:16 Loterias Caixa', 'BR', Decimal('26.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ec42e7d4d871eab6451eccecf8bbb478c01115de95a0d9821a4b9960bfc2e2de', datetime.date(2024, 4, 15), 2, 'PAGUE MENOS 1225 BRASILIA', 'BR', Decimal('163.83'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ec4f45f804a8a619147faea55d5cfd1df6b20f873610550ca0bfec1e60882157', datetime.date(2024, 10, 15), 2, 'A FESTIVA BRASILIA', 'BR', Decimal('171.10'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ec70a0c469a5e156999be8fee8cdb716643cdabf53c852b1577e94af5f06cbab', datetime.date(2024, 5, 3), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('68.90'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ec7d1f893760870a323664fa8cc02ddbb7860d9a1ae6f608b2be325acb360526', datetime.date(2024, 3, 23), 2, 'PAG*Zig SAO PAULO', 'BR', Decimal('376.01'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('ecb1b7c8380cb4dccfa7525545bf349d4cc06e14488b5e33a771d3dd4167611c', datetime.date(2024, 1, 17), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('11.94'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('ecda793fe9edb2e5437b455747c4b177c2574b5a6e2bda42ee886651966a6585', datetime.date(2024, 11, 23), 2, 'ZIG*Mane Mercado Brasilia', 'BR', Decimal('224.40'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ed65bcaa8a91c9e05f6a72baedff3d92e82d5b245ecd5de9bedd75728e258d5b', datetime.date(2024, 6, 6), 1, 'Pix - Recebido - 06/06 10:43 00056342543100 PAULO NEY L', 'BR', None, Decimal('390.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('ed9d26997cf02228161681fc6aebd87e20494f5223089785371ab28c5edd3543', datetime.date(2024, 10, 18), 2, 'CANTINA E CIA BRASILIA', 'BR', Decimal('7.00'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('eda51385fa78ee71ca2f0064bba5dc2bff4302c56dcb2cf694bdb35c916c7b23', datetime.date(2024, 3, 18), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('1.60'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('edaa646273dedaaa5237c201c46ec3d0dfb085136704fe978d6b82ac60eb3448', datetime.date(2024, 9, 22), 2, 'PAG*XsollaGames Sao Paulo', 'BR', Decimal('26.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('edd84732a1434912f967486ce714cd40f813d30d775126e5314b4d93925ac662', datetime.date(2024, 8, 13), 2, 'RESTAURANTE FAROFINA BRASILIA', 'BR', Decimal('96.80'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('ede809b561765ffd9afe725093f9806e5a486a89c8389ebf6c5f8e9cb1549016', datetime.date(2024, 4, 11), 2, 'PRODUTOS GLOB PARC 05/12 RIO DE JANEI', 'BR', Decimal('44.90'), Decimal('0.00'), 1, 5, 12, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee27e20f44cd6b5e2329e2cdca22507b0af25b073ac00af3753315f1f18b78dd', datetime.date(2024, 10, 28), 2, 'GRUPO FARTURA DE HORTI BRASILIA', 'BR', Decimal('62.98'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee416a45cc45c0a0beae272d7b237c7984f8e3cc4b3c6653f565b96a31fa3bf6', datetime.date(2023, 8, 14), 2, 'PARC=105LISTO PARC 05/05 TAGUATINGA', 'BR', Decimal('980.00'), Decimal('0.00'), 2, 5, 5, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee41e7bf2e58e21108aa6d4693bf9bd0b153cd80ebf7531e3e62b2c408870d54', datetime.date(2024, 9, 13), 2, 'UBER* TRIP OSASCO', 'BR', Decimal('19.47'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee428dd469f6f45eef6e925042d53efeb7516458497dd74ccaf1b8e00c0167c4', datetime.date(2024, 6, 29), 2, 'REI DO PASTEL BRASILIA', 'BR', Decimal('24.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee74b3dc75dab7efc6b87e01ef4170366eee8818d53550ad7303ad534edadb89', datetime.date(2024, 1, 22), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('9.95'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee7da0976efa903e1f844f2eaaa00d327cd2a5403c3eeab43019c47dcddaa7b8', datetime.date(2024, 1, 17), 1, 'Pix - Enviado', 'BR', Decimal('460.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('ee9379b9890f3d3413d361efda2478bfdf2bf446d71413a24bbf6b03585ec397', datetime.date(2024, 4, 16), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.96'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('eea46873fe8e40b59fb1b58c934abcf8b81addfd2fa2d4ec040e319564594ce4', datetime.date(2024, 2, 7), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('28.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('eec416e177e336503ad30b57edd3c78a3bad8d83b2c6c4abdf3e5b504cb57561', datetime.date(2024, 11, 7), 2, 'MERCADOLIVRE*MERCADOLIVOSASCO', 'BR', Decimal('204.25'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('eef6b1a3c97b92e354ce628dddf099b09a7c795663c60991dd67c81686256e0c', datetime.date(2024, 3, 1), 1, 'PLR', 'BR', None, Decimal('31979.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef11bc18cae19f17000f24ff3db8e622d4461ed1a8063bde14f18b33de4c3028', datetime.date(2024, 11, 26), 1, 'Câmbio - 26/11 09:54 SOP-ST.BANCARIO SUL', 'BR', Decimal('13112.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef17c5ac7d38a24b64ca1485cae5cb166647032fb14eff1c252140d160ced015', datetime.date(2024, 2, 27), 1, 'BB Seguro Auto', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef2cf8bc268c2b1bf85020c673d96f6df3be013be6b15963b42954a69c617792', datetime.date(2023, 12, 24), 2, 'BENITA PANINOTECA BRASILIA', 'BR', Decimal('25.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef379b5e9fc7446dea83a1f48b7081a875ed8c88be469d7add781a7f3f2830b6', datetime.date(2024, 4, 1), 2, 'MERCADOLIVRE*AGUSHOPCOMOSASCO', 'BR', Decimal('39.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef597ea190ef7cac130ba990d12290e8c26bb34cfbde83a109f7a4bf3dbe00e7', datetime.date(2024, 12, 2), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.69'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef6d110a2e04b5214a3cfd7e4631c9720a2c74d985389e658f68294a92da8322', datetime.date(2024, 1, 18), 2, 'MR. JOHN BRASILIA', 'BR', Decimal('60.00'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('ef71f62e686f0451a1255a7f00174447d10974b8401856916c244f570522f7e7', datetime.date(2024, 1, 19), 2, 'PG *TON CHAVEIRO BRASILIA', 'BR', Decimal('50.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('efd87c4e079f027f4defc11f9dc29eb248b5a9f47cf94a295c4910f9bfa1549b', datetime.date(2024, 1, 11), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('efd8c784720e4794ae0a8f4dcbdbb067a3f6332971fbb04d583518d35fe770c2', datetime.date(2023, 12, 26), 2, 'PAG*DiogoLealPimenta BRASILIA', 'BR', Decimal('21.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('efecfd786209db9973de42a6c9e4b72fb566c84c02a2f6cc3d974ec39f301564', datetime.date(2024, 1, 18), 2, 'Amazon Music SAO PAULO', 'BR', Decimal('21.90'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('effa593ef03b41c9bc3bf5f49991428bb3f0b67a09e91e4cb496be409f26e925', datetime.date(2024, 2, 26), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('4.14'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f001edb3430d361602ee5f9cf9769352058a7cc8dd8a78a8cf491cb15991029d', datetime.date(2024, 10, 14), 2, 'AstonMartin BRASILIA', 'BR', Decimal('79.70'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('f018137ff2170ad58f922ec37011efd790e924224ad5b71f656449595d78ea12', datetime.date(2024, 3, 7), 1, 'Pagamento de Impostos', 'BR', Decimal('413.82'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('f033f73c91a2fc5d0b1066f9c0ed8af90aa6bd8427cdd78c68a64238daf11d59', datetime.date(2024, 10, 10), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('15.53'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('f05a1b3e3446d4179cd183649c32bcd3d1123b6719d365580272c907c4468619', datetime.date(2023, 12, 26), 2, 'LOUNGERIE BRASILIA', 'BR', Decimal('551.30'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f06c005d51e54193496e46e5934796853c4d1b5cefcb1b4546c2092fb1227735', datetime.date(2024, 6, 25), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('9.81'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f0cfad9f787122194941b387caa9009642db90c4a6111a19ddf0c5fefc12af91', datetime.date(2024, 10, 5), 2, 'DELTA AERO SALVADOR 22 SALVADOR', 'BR', Decimal('15.00'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('f1297c443943788961f48fec54d2309fbe3e8cfd3d14ac7957611e8b449ae60a', datetime.date(2024, 9, 21), 2, 'IFD*VINNYS PIZZA E ALIMBRASILIA', 'BR', Decimal('121.99'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('f147df1b717d091261642ca86adc01c8d4bb3141640cd910ff88a464ed833495', datetime.date(2023, 12, 23), 2, 'PAG*JosefaDosReis BRASILIA', 'BR', Decimal('378.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f15010b0c596726183c5db20043801a81cfdc8916816644188594337ed30445f', datetime.date(2024, 2, 13), 2, 'PAG*Aslog BRASILIA', 'BR', Decimal('12.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f1bae7ae63f96af368bc021780c7002e26c36cbbbca7bc1f26e267cd9378c294', datetime.date(2024, 8, 22), 2, 'CINEMARK BRASIL SAO PAULO', 'BR', Decimal('18.24'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f20aed6d5c7cdf5e82527de87ad4dca1b1c68c7166d1f1c68ad3f8047da492dc', datetime.date(2024, 8, 29), 2, 'Frigideira BRASILIA', 'BR', Decimal('18.00'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f214f50da979371045c2bcc7a6b9db101071f4c98a6f15897baf658d8cfe54c1', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 25/11 10:57 Eletrica Flamar Ltda', 'BR', Decimal('38.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('f233d304891a94b800042838e640de60466a490c6c9c6571be9594b07f2cf766', datetime.date(2024, 9, 4), 2, 'ZP *CANTINAGOODLANCHEV Brasilia', 'BR', Decimal('210.00'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f258c0bf99f5bc04dc20e996bb19a327710334213eaa2f289220563fd330610c', datetime.date(2024, 8, 28), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.91'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f28eeaa3ce4c1609293874b73a48a6d8a62a70df5230368f0b10bcff663e350f', datetime.date(2024, 5, 12), 2, 'REDE HORTI MAIS BRASILIA', 'BR', Decimal('17.92'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('f29b578ced4fca8be2ce2a58a1da6a43a2cd281f4e9aea316405ffcf892b3c10', datetime.date(2024, 1, 30), 1, 'Saldo Anterior', 'BR', None, Decimal('12741.44'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('f2a858d513b95ae089f150d37c89b844e008216f5e18e5a62d35d050e4056fea', datetime.date(2023, 12, 13), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('19.95'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f2cb453c01783b14f455b562b8825231c85d3d598cfa38a18cf60456bd9e5a97', datetime.date(2024, 7, 21), 2, 'GRUPO FARTURA DE HORTI BRASILIA', 'BR', Decimal('105.79'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('f2d9269b8750e15aea675cc88306dc65c8e8d07089878d93cf98c2d2b102d8d8', datetime.date(2024, 12, 5), 1, 'Pagamento de Boleto - MONI IMOVEIS LTDA', 'BR', Decimal('6431.37'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f2efcae7ae2341aa3be5f3757cc22fdc0c84a10623bf068ce8938376bb1c7057', datetime.date(2024, 7, 25), 1, 'Pix - Enviado - 25/07 07:15 Manoel Erivan Domingos Da', 'BR', Decimal('550.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('f3274c59bfd4761c1103c611761f3a7fd57c5b718b704a5d1b526b786bcb5c54', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 18:15 Helen Bruna Nascimento Far', 'BR', Decimal('800.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('f362732c2e92d69e0d2200d1f4a041a0826441914ae80c272c5aa0785fab355e', datetime.date(2024, 6, 29), 2, 'ALLPARK EMPREENDIMENTOSGoiania', 'BR', Decimal('6.00'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f36751fb3c949ab65aa1ebf22b9e85960f2d88cd0e209be2a0f0f3fda17567ae', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 23/11 10:42 Victor Hugo Das Merces Da', 'BR', Decimal('8.40'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('f387647d09b510e6d46eec6a3b2e42810e3bac3a32f8fde9c25e811e13042c37', datetime.date(2024, 3, 5), 2, 'IFD*iFood OSASCO', 'BR', Decimal('2.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f3dc0b72428a5181389ced5649dda460e8e2e751f0d20a4d0e2755952743d598', datetime.date(2024, 11, 2), 2, 'ifood *IFD*TT BRASIL Vila Yara Osa', 'BR', Decimal('81.80'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('f3e7812f2bec6db2d57a15b6bc6ad1f897a8bfef5deccd06b80e6830006c2732', datetime.date(2024, 12, 6), 1, 'Ações - Proventos - Pag Jur Cap Pro BBAS3 06/12/2024', 'BR', None, Decimal('82.17'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f3f92e2a3d7fe47815ac64a5787b17ef5d51f497eb670cba26f410dce05747f0', datetime.date(2023, 1, 14), 2, 'PG *GLAMBOX G PARC 12/12 SAO PAULO', 'BR', Decimal('67.41'), Decimal('0.00'), 2, 12, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f41c8d6cc61100c2e00d83f975ed00b2ac357740eb806e3a0dd21abac48fb100', datetime.date(2024, 1, 31), 2, 'PG *TON RESTAURANTE RIO BRANCO', 'BR', Decimal('37.29'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('f41f723d74c55b11b4880f7f50e0160b7b2b59fc3043c9b0540cf7c0bba31f7c', datetime.date(2024, 6, 29), 2, 'OUTBACK BRASILIA PIER BRASILIA', 'BR', Decimal('118.38'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f46147058484577a1aa21e1fc715c950c22b814811fb0982111c992f08241d55', datetime.date(2024, 6, 10), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('589.23'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('f483e8009231ee96abac95b7a915d7aa7bce6fc27334ff71c93c1476c3d4d464', datetime.date(2024, 3, 7), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.93'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f4865257170e54fcf9651dc6bdee281ec92cbe709bdb43674ad12d6ae0c28dc7', datetime.date(2024, 10, 25), 1, 'Pix - Enviado - 25/10 06:48 Jose Reinaldo Da Silva', 'BR', Decimal('237.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('f505ca8257e4d3c17c6c97d6eb62bc69fec4734e7e2d85341c39d83174707156', datetime.date(2024, 11, 19), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('444.27'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('f50f05355ade950be78da77cab8546cb6e89e4d2450d610d43ccf8e65e4fd8f4', datetime.date(2024, 3, 10), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('104.00'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f536cd53b46c5299423bd735b9c86b33f6b06b89989214d3b29d8d06b543dd21', datetime.date(2024, 2, 25), 2, 'MULTIPLAN BRASILIA', 'BR', Decimal('20.00'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f54f18f90b96637e3396d3085ac9c11b37d4845cd916ba87e14b879fb04464f4', datetime.date(2024, 3, 27), 1, 'BB Seguro Auto', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('f578c41ca450a8234c71d15a50e25eb4afe43f50a42fbece029fedc4b825d075', datetime.date(2024, 7, 30), 1, 'Pix - Enviado - 30/07 11:09 Jose Reinaldo Da Silva', 'BR', Decimal('151.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('f5794a4ed8dafad1eeb66e1062998699fd76a5fafd31e99dbfddfe5e3487a833', datetime.date(2024, 1, 9), 2, 'CARNAUBINHA BEACH LUIS CORREIA', 'BR', Decimal('324.50'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f57e33508d43fb54ec0bbced7cc46f88b9a5caa7ac7c5a7be618569cdfe94de6', datetime.date(2024, 10, 2), 1, 'Pix - Enviado - 02/10 10:57 Maria Eliene Oliveira Port', 'BR', Decimal('1481.73'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('f58bf31d0ca2624e585839f2c4f96bff13276b3eb17ae28c0033bb05685de3bc', datetime.date(2023, 12, 16), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f60595f4b54227ff2c1cd21d2a5608f49bb4b78639b4987242248f4951d65c48', datetime.date(2024, 3, 10), 2, 'SAMS BRASILIA', 'BR', Decimal('177.94'), Decimal('0.00'), 2, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f6089bd24ecbb755babd9eba9f355b9246c7e16637ec52f20d4ed0425437affe', datetime.date(2024, 9, 19), 1, 'Pix - Enviado - 19/09 15:00 Vibra Energia Sa', 'BR', Decimal('250.23'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('f60a599383b49e08eabe63250fa1aa082d0e2e5bf6be874acbb0882e2a0a63b1', datetime.date(2023, 12, 16), 2, 'IFOOD *ifood Vila Yara Osa', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f613cd901ba2072b64d2c4e63147a5c9c812534d4c19a2335f22b6e94934f144', datetime.date(2024, 3, 15), 2, 'VELOE BARUERI', 'BR', Decimal('22.26'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('f6227a2d119a96d171c5524d41e4e22d28c875464bf8f18dc932babd02462fcf', datetime.date(2024, 3, 30), 2, 'MARIA PIRENOPOLIS', 'BR', Decimal('120.00'), Decimal('0.00'), 2, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('f62b6e35d23f863821fd18cc96336f6d89a317c8dc205b16a522dbec33900738', datetime.date(2024, 8, 4), 2, 'APPLE.COM/BILL SAO PAULO', 'BR', Decimal('54.90'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('f63f474bb3e2e0cf0747694925a78ebfaf09e6a83c0df23314ab38372261d41d', datetime.date(2024, 2, 22), 1, 'Pix - Enviado', 'BR', Decimal('25.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('f643505815a2a6bc1fd709900fe935dcd1ded3c9336a098d6933d59e12a3830e', datetime.date(2024, 11, 4), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('82.35'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('f66ca4963706b3dbf7e3336d9b5896db21c9b76bc186ef7f4ed92f88ba2400a8', datetime.date(2024, 10, 31), 2, 'AIRBNB * HM24HRFXQH SAO PAULO', 'BR', Decimal('120.27'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('f6cbfbfe0a97de209dfc3d6da4f31f6e4bb9c68406848379096ab6cdfafd9b63', datetime.date(2024, 12, 10), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('f6e88c4f0625bcefe5bc03e52f5ad0d23b80484eabc943dad293dbf419e21f90', datetime.date(2024, 8, 22), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('5.81'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f6ec1f3938ad6e5925f315268872c7f35741ca9686c609708822a55fc508c9d7', datetime.date(2024, 6, 16), 2, 'IFD*MATHEUS ROCHA DE SOBRASILIA', 'BR', Decimal('87.98'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f7a44493137fd5712b58964ffb24c0a542773eecafa730e0cc9b03cbf80ede1a', datetime.date(2024, 11, 25), 1, 'Pix - Enviado - 25/11 11:13 Jose Valdir Cardoso De Oli', 'BR', Decimal('200.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('f7b4cb72a47b1400492c8041d5ab8da02e64ba60fe6574c58341b6bc83cd207f', datetime.date(2024, 1, 3), 2, 'PAG*LudymillaDo LUIS CORREIA', 'BR', Decimal('175.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f7b5e5cbfeab6c5807cf556a2a17a767d7c9b991fd0c7eaaae34107461231fc5', datetime.date(2024, 8, 18), 2, 'CASA ALMERIA BRASILIA', 'BR', Decimal('231.72'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f7ede2de74154de85835fa57f6368f506f882df410a4fb0d690f18626ab9b662', datetime.date(2024, 8, 16), 2, 'IFD*TACO PEP RESTAURANTBRASILIA', 'BR', Decimal('232.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f82ae146b72740404b8bd167bd0ac62d3775c7a4cda1aad5f9b1eefbcbbb362f', datetime.date(2024, 8, 26), 2, 'Bianco GOIANIA', 'BR', Decimal('102.54'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('f830e5c9136512ae0a6667f6a8c572a9f7ec80eb14de06d4163b2746854eb29a', datetime.date(2024, 5, 4), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('55.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f832339aa1e435c92595bc29693862bf73683d7d7002c0ba90407503e0cd3060', datetime.date(2024, 1, 18), 2, 'MERCADOLIVRE*6PRODUTOS OSASCO', 'BR', Decimal('39.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('f838cd6a682e20bc2e5d4445c37f21cc0bff38ea6f6435ea3ff5b5c1121b18cd', datetime.date(2024, 2, 20), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('10.94'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f88305b8b356e289b5d40a7c452cc6598e01be120f06392ab9fc39b0b5de3802', datetime.date(2024, 5, 26), 2, 'MP *4PRODUTOS OSASCO', 'BR', Decimal('320.71'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('f8ab23479122e87905b7add47a93529174cfa8452cf56bbf9579c7ef4b3bc1ed', datetime.date(2024, 6, 22), 2, 'RESTAURANTE 61 ASA SUL BRASILIA', 'BR', Decimal('301.02'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f8b71b3e8eb4131063ecb8f6befb60c7aacf5a6cb831141e621e56550a14515a', datetime.date(2024, 5, 14), 1, 'Pix - Enviado - 14/05 14:35 Vibra Energia Sa', 'BR', Decimal('243.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('f8b9f287be1eb845e5aecb976c3fa01369b46d6f4ba8be545d8c1b9b9c09c2bb', datetime.date(2023, 12, 19), 2, 'PAG*FolhaDeSPaulo SAO PAULO', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f8da4e35c52f1db25696b3675b1c2a6940a53ca35ac5d627d3efac734caec2a8', datetime.date(2023, 12, 19), 2, 'UBER *TRIP HELP.UBER.COSAO PAULO', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('f8e015563f5256a49559a39fed41e75dbcfe27426d5b1184d0e33bb405ae4a73', datetime.date(2024, 12, 1), 2, 'DEVILLE HOTEIS E TURIS CAMPO GRANDE', 'BR', Decimal('1815.23'), Decimal('0.00'), 2, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('f93bf546ea531cb4f914173492fbe7516f3bb9850e17740300383437950e4742', datetime.date(2024, 4, 1), 2, 'MERCADOLIVRE*GIGATUDOBYOSASCO', 'BR', Decimal('418.41'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('f94329d34218b7e19a143f78b956e58214562571e0d356b6c99f2c9c4b108ca5', datetime.date(2024, 2, 29), 1, 'Movimento do Dia', 'BR', None, Decimal('90.36'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('f9481cb627e3186e82ac3b8e5908487adbe40c596a76efc8e1b89a4e7bd59fba', datetime.date(2024, 8, 10), 2, 'CREMERIA ITALIANA BRASILIA', 'BR', Decimal('49.00'), Decimal('0.00'), 2, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('f94bd68849487a7e0ac18a3576c6199c0c7d9436f5ebb8f67d2ddfa2f1777214', datetime.date(2024, 3, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Abr_24', datetime.datetime(2024, 12, 21, 16, 59, 33), None, None, None, None, None, None, None, None, None)\n", |
|
"('f95bbed8a4ea4c96227e4c4f8cd2a91a5f9a8399e8c27c92e4398e3760d824f4', datetime.date(2024, 4, 16), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('10.95'), Decimal('0.00'), 1, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('f96aba5955c3c1ff23f0c8bd9c5358df311be0dc90378ae76cda650bbcbdb9f1', datetime.date(2024, 1, 15), 2, 'PICPAY *Dalila Resend Sao Paulo', 'BR', Decimal('1000.00'), Decimal('0.00'), 2, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('f98fc82ef7f8a62d316aeae5e7f4f742247eb5249a3f9cd73015edab6dfc940b', datetime.date(2024, 2, 26), 1, 'Pix - Enviado', 'BR', Decimal('28.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 22), None, None, None, None, None, None, None, None, None)\n", |
|
"('f9956d2e49da25e58c5c0c7e7745cb3a3bdb1f43c023ee623488d6e94b5238f5', datetime.date(2024, 8, 7), 2, 'IFD*GRAN LOG EXPRESS Osasco', 'BR', Decimal('10.00'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('f9bc4f2453e34a8b008afefd730f51ba094bbc573fcd84a2478817e234e637e5', datetime.date(2024, 5, 28), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('3.00'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('f9d18eab97239e62131a18c7465a2d154e6dff58c49d1fde83bf4421abbc3826', datetime.date(2024, 7, 7), 2, 'PANINOTECA BENITA BRASILIA', 'BR', Decimal('123.20'), Decimal('0.00'), 2, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('f9d86fdb57f25449c6e427099414de3b83c7fd6b7b6048bbdc72a29521243ebf', datetime.date(2024, 8, 9), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('30.89'), Decimal('0.00'), 1, None, None, 'Ago_24', datetime.datetime(2024, 12, 21, 16, 59, 34), None, None, None, None, None, None, None, None, None)\n", |
|
"('f9f3b3674d55c17bb213d0744c88dbc88f0f2d6c38c6132059ccc24ce58e47dc', datetime.date(2024, 8, 27), 1, 'BB Seguro Auto - SEGURO AUTO BB/MAPFRE', 'BR', Decimal('299.16'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('fa0cee56a3ba6597feef5bb404021fc6d4119946613f63181c9c7b71a6d4bfbd', datetime.date(2024, 10, 8), 2, 'ZP*FEDERAL GOURMET TRF BRASILIA', 'BR', Decimal('15.53'), Decimal('0.00'), 2, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('fa397f8d85f105f25606f3f49184020f77a54efca47348027e10ee3d206c6a87', datetime.date(2024, 12, 18), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('7.95'), Decimal('0.00'), 1, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('fa472cf42f3a2101d94b8c42947dc5e45375a424bc911216b6106b5de09c37b5', datetime.date(2024, 12, 18), 1, 'Recebimento de Proventos - JUSTICA FEDERAL DE PRIMEIRO GRAU NO', 'BR', None, Decimal('2358.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 26, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('fa52fef1a282a69c600a87a233db18bd842f05dea196d59cceacb036b49e0b98', datetime.date(2024, 11, 3), 2, 'POUSADA PIRENEUS RESOR PIRENOPOLIS', 'BR', Decimal('87.12'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('fa7c4958aceb96077fb6a3bc622586df5b0ba411d5af35761c337dcbd633f93f', datetime.date(2024, 10, 30), 1, 'Transferência enviada - 30/10 10:16 ROBSON NUNES DA SILVA', 'BR', Decimal('10120.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('fa8d6a3efa122c7406c429d1a9c4c1b6600d23984ec736a2e73cf5ba80533035', datetime.date(2024, 7, 26), 1, 'Pix - Enviado - 26/07 15:34 Loterias Caixa', 'BR', Decimal('20.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('faac931ca999e9fd3200b9112d57ee78ca922a4d8bcc4e6f56cb0e43e4689c88', datetime.date(2024, 11, 5), 2, 'MERCADOLIVRE*DROGACLARAOSASCO', 'BR', Decimal('119.99'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('fabf4d2ccf25bf74c7261b3f3088ceed78c61ab4fc29e9e43b87684d1fa2cf60', datetime.date(2024, 1, 31), 2, 'CHIQUINHO SORVETES RIO BRANCO', 'BR', Decimal('19.00'), Decimal('0.00'), 2, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('fae6c343da87a860ec63a5fd3b67160e29469e2b893a2e7ed225e0762721e298', datetime.date(2024, 8, 23), 1, 'Compra de Ações', 'BR', Decimal('5852.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('fb09b53086c0150aedba1c2df8adcf313f7f634f1991de792ba5fa254990af40', datetime.date(2024, 1, 17), 1, 'Pix - Enviado', 'BR', Decimal('2750.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('fb608a13991ea229b963a7a8816fc45b11a7eb3df8a3818fff1de22c7650707c', datetime.date(2024, 3, 5), 2, 'Gympass GympassBr Sao Paulo', 'BR', Decimal('399.90'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('fb6f36d09f02e0e7728968ac40dc4fb86d1c9df5a012ff9b984b5ff8b1b6da14', datetime.date(2024, 3, 19), 1, 'Pagto via Auto-Atend.BB', 'BR', Decimal('47.80'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('fb9363584dd826575e4ac56130a8e4fa42a445935c086473ca20a403e1b5b9ac', datetime.date(2024, 11, 25), 1, 'Pagto cartão crédito - VISA INFINITE', 'BR', Decimal('18548.34'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('fbb7997b2e6d770c3187d296fde20b88315b3895ac41f355e00d6e2e78ea75cb', datetime.date(2024, 6, 9), 2, 'IFD*RICCO BURGER COMERCBRASILIA', 'BR', Decimal('206.50'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('fbf24f85eef35dd27a974c77e171cbb5547e1e8330c26f32c2bf0d38142f1b51', datetime.date(2024, 1, 17), 1, 'Pix - Enviado', 'BR', Decimal('38.00'), None, 1, None, None, None, datetime.datetime(2024, 11, 17, 20, 4, 44), None, None, None, None, None, None, None, None, None)\n", |
|
"('fbf3a6aca716a327e3bce32fd23dbb9cf3ead65348c1dad9ffe90528a97a5e96', datetime.date(2024, 1, 18), 2, 'FARO RESTAURANTE BRASILIA', 'BR', Decimal('670.45'), Decimal('0.00'), 1, None, None, 'Fev_24', datetime.datetime(2024, 12, 21, 16, 59, 36), None, None, None, None, None, None, None, None, None)\n", |
|
"('fc05bcfe254a3230f84945465f24e315ac08991bdcfbe1b045d7663fbcd40f25', datetime.date(2024, 12, 14), 2, 'IFD*EMBAIXADA GASTRONOMBRASILIA', 'BR', Decimal('101.99'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('fc437fba9bca47550ba121791f30d05ccafa44a1e03c2598df73f8db7d764488', datetime.date(2024, 1, 17), 2, 'BRASILIA EMPR PARC 01/12 BRASILIA', 'BR', Decimal('599.00'), Decimal('0.00'), 2, 1, 12, None, datetime.datetime(2024, 12, 21, 15, 28, 2), None, None, None, None, None, None, None, None, None)\n", |
|
"('fc76779f37f4d696f9fa40e2ca788013dc0d91d41198a5513c5a3aadbb22c8b9', datetime.date(2024, 5, 23), 1, 'Pix - Enviado - 23/05 13:50 Angelita Ferreira Barcelos', 'BR', Decimal('30.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('fc9f1b7ca01399137262db53a0da4b0014accf75a157ffd3bc81dfb63a3692d9', datetime.date(2024, 5, 31), 1, 'Pagamento de Boleto - PJBANK PAGAMENTOS S A', 'BR', Decimal('1334.86'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('fcaabaa4dd538e9977b25e2a74db96d08a431cea505354fa1e4b5d3c8b5f4ace', datetime.date(2024, 11, 19), 2, 'FolhaDeSPaulo Sao Paulo', 'BR', Decimal('29.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('fcaf0bdbb8b23ef057704ea028b74368b9639be92772f0fb13feb8d502569373', datetime.date(2024, 9, 22), 2, 'IFD*TT BRASILIA COMERCIBRASILIA', 'BR', Decimal('133.00'), Decimal('0.00'), 1, None, None, 'Out_24', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('fce8b40b8ccaf3131abaed54fb25e20ba93654dc5afcb00b1993b66d083e80d6', datetime.date(2024, 11, 6), 2, 'MoinhoDoVale BLUMENAU', 'BR', Decimal('175.46'), Decimal('0.00'), 2, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('fd1625936d158f1dcd8ea66b18e284eb9f473b017f544e32092b852b2dd5bf03', datetime.date(2024, 8, 30), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('8.97'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('fd1b2e9bd14019d8330214733fb4e6c8731d0fde7d82bced84134c4bb115b1a3', datetime.date(2024, 10, 16), 1, 'Pix - Recebido - 16/10 06:22 00553253000 DANIEL CHAMORR', 'BR', None, Decimal('71.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('fd3fdf4977333546bd2e6698472f595627deb7f6e45408a47cfc69556ad4ea43', datetime.date(2024, 11, 6), 2, 'Uber *UBER *TRIP Sao Paulo', 'BR', Decimal('14.37'), Decimal('0.00'), 1, None, None, 'Nov_24', datetime.datetime(2024, 12, 21, 16, 59, 40), None, None, None, None, None, None, None, None, None)\n", |
|
"('fd48ff21a109a03e5238f518ed72b3fc5e23fb5bb568df0f4d25f7450ce5648b', datetime.date(2024, 5, 5), 2, 'HAPPY HARRY BRASILIA', 'BR', Decimal('57.00'), Decimal('0.00'), 2, None, None, 'Mai_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('fdc5dd92a651a6481caa5e64b665ee8e5e79fe8a9a0a20c7f5b9370dda058a12', datetime.date(2024, 7, 5), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('66.61'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('fe389e8b2e47d09d3384723fc3504d02d3730124f92b554c3e9c03dd1b3cbde6', datetime.date(2024, 12, 17), 2, '28343714Paulo BRASILIA', 'BR', Decimal('50.00'), Decimal('0.00'), 2, None, None, 'Próxima_Fatura', datetime.datetime(2024, 12, 21, 16, 59, 41), None, None, None, None, None, None, None, None, None)\n", |
|
"('fe4f24485387ae47a79d907c8268e7b1b1dac13365ec9de38cad5af04508be30', datetime.date(2024, 10, 10), 1, 'Pagamento de Boleto - INSPIRA MUDANCA PARTICIPACOES S/A', 'BR', Decimal('3196.00'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('fea488a2f70fd52fae5d171d806ea132c68b1c16169e30ec1a873d6a3d3d17dc', datetime.date(2024, 8, 13), 2, 'DL*GOOGLE YouTub SAO PAULO', 'BR', Decimal('41.90'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('feaeefcd9263dd04a4e6f80dcd5f9f04ca42a3f7d7b8006701842e3b796fe0e6', datetime.date(2024, 12, 6), 2, 'IFD*DIVINO PAI ETERNO -BRASILIA', 'BR', Decimal('66.60'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('febccce17916bfb90bd4d334abf86fa4a3cb352e4617719563d839b0f7db42d4', datetime.date(2024, 11, 21), 1, 'Recebimento de Proventos - TRIBUNAL REGIONAL FEDERAL DA 1 REGIAO', 'BR', None, Decimal('18315.21'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('febe2e0b72e09db8523ef46ea11265043d3da71f830ecc1a803aa5df741927aa', datetime.date(2024, 2, 29), 1, 'Saldo Anterior', 'BR', None, Decimal('2542.14'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 23), None, None, None, None, None, None, None, None, None)\n", |
|
"('feda8079d47b8642d66e590570691cedfef457d03d45c6e31920cf341d9259b4', datetime.date(2023, 12, 23), 2, 'TETA CHEESE BAR BRASILIA', 'BR', Decimal('161.80'), Decimal('0.00'), 1, None, None, None, datetime.datetime(2024, 12, 21, 15, 28, 3), None, None, None, None, None, None, None, None, None)\n", |
|
"('feeef00f66b66e4d2759750955fc45712d3408088acf146f2b38573fe924b083', datetime.date(2024, 9, 4), 2, 'MERCADOLIVRE*SOLDIERSNUOSASCO', 'BR', Decimal('110.82'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('fefb51280fefe51b5bc8562fa1ebdc6a2b39d491e9b92f86c4350ed39b99cd9b', datetime.date(2024, 8, 14), 2, 'UBER * PENDING SAO PAULO', 'BR', Decimal('37.14'), Decimal('0.00'), 2, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('ff124565f987fb2f4f1e42e92c39d6bcc038a9f0441e4713f5525bd43108a3cf', datetime.date(2024, 5, 28), 2, 'MERCADOLIVRE*GRUPOTK OSASCO', 'BR', Decimal('45.99'), Decimal('0.00'), 1, None, None, 'Jun_24', datetime.datetime(2024, 12, 21, 16, 59, 38), None, None, None, None, None, None, None, None, None)\n", |
|
"('ff2291bca983ad1a096b5e2da8d0c67fb5ee90430739b285964731a2c6102915', datetime.date(2024, 9, 2), 1, 'TED Transf.Eletr.Disponiv - 104 2272 28986008149 MARIA ELIENE DE', 'BR', Decimal('1481.73'), None, 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 24), None, None, None, None, None, None, None, None, None)\n", |
|
"('ff4918ede1649657f0936ac2df6de92fcd764e463abebeda60a6e22a61602d3f', datetime.date(2024, 11, 11), 1, 'BB RF Ref DI Mega - BB RF Referenciado DI LP Mega', 'BR', None, Decimal('3335.00'), 1, None, None, 'CC', datetime.datetime(2024, 12, 21, 19, 27, 25), None, None, None, None, None, None, None, None, None)\n", |
|
"('ff795269f2342445b83030d4548720169d99f1baaa3a7ce832a103dc99e1e90b', datetime.date(2024, 3, 8), 2, 'IFD*PIZZARIA DON CORLEOBRASILIA', 'BR', Decimal('149.79'), Decimal('0.00'), 1, None, None, 'Mar_24', datetime.datetime(2024, 12, 21, 16, 59, 39), None, None, None, None, None, None, None, None, None)\n", |
|
"('ff901920e4a655653a66d21a16637cb7786e0faa5f2e3a4e05d43f9485430594', datetime.date(2024, 7, 5), 2, 'POUSADA PIRENEUS RESORTPIRENOPOLIS', 'BR', Decimal('3408.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"('ffaa11145c42a1650b6fd9e9dfb26963e67e802a1121d4c74d11071d44a998b6', datetime.date(2024, 11, 18), 2, 'IFD*IFOOD CLUB Osasco', 'BR', Decimal('12.90'), Decimal('0.00'), 1, None, None, 'Dez_24', datetime.datetime(2024, 12, 21, 16, 59, 35), None, None, None, None, None, None, None, None, None)\n", |
|
"('ffdc127b124e2268be1bcba0ba3e28ef957a10a48624b1a9db58deecc38ed5f4', datetime.date(2024, 9, 10), 2, 'IOF - COMPRA NO EXTERIOR', '', Decimal('0.26'), Decimal('0.00'), 1, None, None, 'Set_24', datetime.datetime(2024, 12, 21, 16, 59, 42), None, None, None, None, None, None, None, None, None)\n", |
|
"('fff402e3038ba739381c80ad1df0517d5ec62369b6a2eaa458e32dcc5ed0cc67', datetime.date(2024, 7, 5), 2, 'UBER* TRIP WWW.UBER.COM.', 'BR', Decimal('5.00'), Decimal('0.00'), 1, None, None, 'Jul_24', datetime.datetime(2024, 12, 21, 16, 59, 37), None, None, None, None, None, None, None, None, None)\n", |
|
"DONE!\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"from mysql.connector import connect\n", |
|
"\n", |
|
"# Query to select transactions without a category\n", |
|
"query = \"SELECT * FROM TRANSACTION t LEFT JOIN CATEGORIZED_TRANSACTIONS ct ON t.ID = ct.TRANSACTION_ID WHERE ct.TRANSACTION_ID IS NULL;\"\n", |
|
"\n", |
|
"with connect(\n", |
|
" host=\"127.0.0.1\",\n", |
|
" user=\"root\",\n", |
|
" password=\"pleasehashapasswordomg\",\n", |
|
" database=\"default\",\n", |
|
") as connection:\n", |
|
" print(\"CONNECTED!\", connection)\n", |
|
" with connection.cursor() as cursor:\n", |
|
" cursor.execute(query)\n", |
|
" result = cursor.fetchall()\n", |
|
" # print(result)\n", |
|
" for row in result:\n", |
|
" print(row)\n", |
|
" print(\"DONE!\")\n", |
|
"\n" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [] |
|
} |
|
], |
|
"metadata": { |
|
"kernelspec": { |
|
"display_name": "base", |
|
"language": "python", |
|
"name": "python3" |
|
}, |
|
"language_info": { |
|
"codemirror_mode": { |
|
"name": "ipython", |
|
"version": 3 |
|
}, |
|
"file_extension": ".py", |
|
"mimetype": "text/x-python", |
|
"name": "python", |
|
"nbconvert_exporter": "python", |
|
"pygments_lexer": "ipython3", |
|
"version": "3.12.7" |
|
} |
|
}, |
|
"nbformat": 4, |
|
"nbformat_minor": 2 |
|
}
|
|
|